2010-05-18 17:58:33 +02:00
|
|
|
/*
|
2010-09-09 14:16:39 +02:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 17:58:33 +02:00
|
|
|
*
|
2010-06-18 18:39:21 +02:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 22:19:40 +02: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 18:39:21 +02:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 22:19:40 +02:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 17:58:33 +02:00
|
|
|
*/
|
|
|
|
|
2013-12-16 03:32:02 +01:00
|
|
|
#ifndef VPX_MEM_VPX_MEM_H_
|
|
|
|
#define VPX_MEM_VPX_MEM_H_
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-08-14 23:12:00 +02:00
|
|
|
#include "vpx_config.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
#if defined(__uClinux__)
|
2016-07-25 23:16:28 +02:00
|
|
|
#include <lddk.h>
|
2010-05-18 17:58:33 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2017-09-09 03:57:08 +02:00
|
|
|
#include "vpx/vpx_integer.h"
|
|
|
|
|
2010-05-18 17:58:33 +02:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-07-25 23:16:28 +02: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_free(void *memblk);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2015-08-14 21:16:07 +02:00
|
|
|
#if CONFIG_VP9_HIGHBITDEPTH
|
2017-09-09 03:57:08 +02:00
|
|
|
static INLINE void *vpx_memset16(void *dest, int val, size_t length) {
|
|
|
|
size_t i;
|
|
|
|
uint16_t *dest16 = (uint16_t *)dest;
|
|
|
|
for (i = 0; i < length; i++) *dest16++ = val;
|
|
|
|
return dest;
|
|
|
|
}
|
2014-08-26 21:35:15 +02:00
|
|
|
#endif
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2015-04-24 05:47:40 +02:00
|
|
|
#include <string.h>
|
2010-05-18 17:58:33 +02:00
|
|
|
|
|
|
|
#ifdef VPX_MEM_PLTFRM
|
2016-07-25 23:16:28 +02:00
|
|
|
#include VPX_MEM_PLTFRM
|
2010-05-18 17:58:33 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-12-16 03:32:02 +01:00
|
|
|
#endif // VPX_MEM_VPX_MEM_H_
|