Take out VP9_ prefix from mips/msa macros
[aom.git] / vpx_mem / vpx_mem.h
bloba027714a01b702da27b99c307866d026b4be8857
1 /*
2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
12 #ifndef VPX_MEM_VPX_MEM_H_
13 #define VPX_MEM_VPX_MEM_H_
15 #include "vpx_config.h"
16 #if defined(__uClinux__)
17 # include <lddk.h>
18 #endif
20 #include <stdlib.h>
21 #include <stddef.h>
23 #if defined(__cplusplus)
24 extern "C" {
25 #endif
27 void *vpx_memalign(size_t align, size_t size);
28 void *vpx_malloc(size_t size);
29 void *vpx_calloc(size_t num, size_t size);
30 void *vpx_realloc(void *memblk, size_t size);
31 void vpx_free(void *memblk);
33 #if CONFIG_VP9 && CONFIG_VP9_HIGHBITDEPTH
34 void *vpx_memset16(void *dest, int val, size_t length);
35 #endif
37 #include <string.h>
39 #ifdef VPX_MEM_PLTFRM
40 # include VPX_MEM_PLTFRM
41 #endif
43 #if defined(__cplusplus)
45 #endif
47 #endif // VPX_MEM_VPX_MEM_H_