#ifndef VPX_VPX_MEM_VPX_MEM_H_
#define VPX_VPX_MEM_VPX_MEM_H_
#include "vpx_config.h"
#if defined(__uClinux__)
#include <lddk.h>
#endif
#include <stdlib.h>
#include <stddef.h>
#include "vpx/vpx_integer.h"
#if defined(__cplusplus)
extern "C" {
#endif
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_free(void *memblk);
#if CONFIG_VP9_HIGHBITDEPTH
static INLINE void *vpx_memset16(void *dest, int val, size_t length) { … }
#endif
#include <string.h>
#ifdef VPX_MEM_PLTFRM
#include VPX_MEM_PLTFRM
#endif
#if defined(__cplusplus)
}
#endif
#endif