2010-05-18 19:58:33 +04:00
|
|
|
/*
|
2010-09-09 16:16:39 +04:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 19:58:33 +04:00
|
|
|
*
|
2010-06-18 20:39:21 +04:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-05 00:19:40 +04:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 20:39:21 +04:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-05 00:19:40 +04:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 19:58:33 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2013-12-16 06:32:02 +04:00
|
|
|
#ifndef VPX_MEM_VPX_MEM_H_
|
|
|
|
#define VPX_MEM_VPX_MEM_H_
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-08-15 01:12:00 +04:00
|
|
|
#include "vpx_config.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
#if defined(__uClinux__)
|
|
|
|
# include <lddk.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-07-14 02:21:29 +04:00
|
|
|
void *vpx_memalign(size_t align, size_t size);
|
|
|
|
void *vpx_malloc(size_t size);
|
|
|
|
void *vpx_calloc(size_t num, size_t size);
|
|
|
|
void *vpx_realloc(void *memblk, size_t size);
|
|
|
|
void vpx_free(void *memblk);
|
|
|
|
|
2014-08-26 23:35:15 +04:00
|
|
|
#if CONFIG_VP9 && CONFIG_VP9_HIGHBITDEPTH
|
|
|
|
void *vpx_memset16(void *dest, int val, size_t length);
|
|
|
|
#endif
|
2012-07-14 02:21:29 +04:00
|
|
|
|
2015-04-24 06:47:40 +03:00
|
|
|
#include <string.h>
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
#ifdef VPX_MEM_PLTFRM
|
|
|
|
# include VPX_MEM_PLTFRM
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-12-16 06:32:02 +04:00
|
|
|
#endif // VPX_MEM_VPX_MEM_H_
|