Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 1 | /* |
Yaowu Xu | 9c01aa1 | 2016-09-01 14:32:49 -0700 | [diff] [blame] | 2 | * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 3 | * |
Yaowu Xu | 9c01aa1 | 2016-09-01 14:32:49 -0700 | [diff] [blame] | 4 | * 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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 10 | */ |
| 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) |
| 24 | extern "C" { |
| 25 | #endif |
| 26 | |
| 27 | void *aom_memalign(size_t align, size_t size); |
| 28 | void *aom_malloc(size_t size); |
| 29 | void *aom_calloc(size_t num, size_t size); |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 30 | void aom_free(void *memblk); |
| 31 | |
Sebastien Alaiwan | 71e8784 | 2017-04-12 16:03:28 +0200 | [diff] [blame] | 32 | #if CONFIG_HIGHBITDEPTH |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 33 | void *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 Converse | 8d38fb7 | 2017-05-04 13:37:40 -0700 | [diff] [blame] | 42 | #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 Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 61 | #if defined(__cplusplus) |
| 62 | } |
| 63 | #endif |
| 64 | |
| 65 | #endif // AOM_MEM_AOM_MEM_H_ |