blob: 0d533c813c46236503711e841bb0775ad6a7c02f [file] [log] [blame]
Yaowu Xuf883b422016-08-30 14:01:10 -07001/*
Yaowu Xu9c01aa12016-09-01 14:32:49 -07002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
Yaowu Xuf883b422016-08-30 14:01:10 -07003 *
Yaowu Xu9c01aa12016-09-01 14:32:49 -07004 * This source code is subject to the terms of the BSD 2 Clause License and
5 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6 * was not distributed with this source code in the LICENSE file, you can
7 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8 * Media Patent License 1.0 was not distributed with this source code in the
9 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
Yaowu Xuf883b422016-08-30 14:01:10 -070010 */
11
12#ifndef AOM_MEM_AOM_MEM_H_
13#define AOM_MEM_AOM_MEM_H_
14
15#include "aom_config.h"
16#if defined(__uClinux__)
17#include <lddk.h>
18#endif
19
20#include <stdlib.h>
21#include <stddef.h>
22
23#if defined(__cplusplus)
24extern "C" {
25#endif
26
27void *aom_memalign(size_t align, size_t size);
28void *aom_malloc(size_t size);
29void *aom_calloc(size_t num, size_t size);
Yaowu Xuf883b422016-08-30 14:01:10 -070030void aom_free(void *memblk);
31
Sebastien Alaiwan71e87842017-04-12 16:03:28 +020032#if CONFIG_HIGHBITDEPTH
Yaowu Xuf883b422016-08-30 14:01:10 -070033void *aom_memset16(void *dest, int val, size_t length);
34#endif
35
36#include <string.h>
37
38#ifdef AOM_MEM_PLTFRM
39#include AOM_MEM_PLTFRM
40#endif
41
Alex Converse8d38fb72017-05-04 13:37:40 -070042#if CONFIG_DEBUG
43#define AOM_CHECK_MEM_ERROR(error_info, lval, expr) \
44 do { \
45 lval = (expr); \
46 if (!lval) \
47 aom_internal_error(error_info, AOM_CODEC_MEM_ERROR, \
48 "Failed to allocate " #lval " at %s:%d", __FILE__, \
49 __LINE__); \
50 } while (0)
51#else
52#define AOM_CHECK_MEM_ERROR(error_info, lval, expr) \
53 do { \
54 lval = (expr); \
55 if (!lval) \
56 aom_internal_error(error_info, AOM_CODEC_MEM_ERROR, \
57 "Failed to allocate " #lval); \
58 } while (0)
59#endif
60
Yaowu Xuf883b422016-08-30 14:01:10 -070061#if defined(__cplusplus)
62}
63#endif
64
65#endif // AOM_MEM_AOM_MEM_H_