2010-05-18 19:58:33 +04:00
|
|
|
/*
|
2016-09-02 00:32:49 +03:00
|
|
|
* Copyright (c) 2016, Alliance for Open Media. All rights reserved
|
2010-05-18 19:58:33 +04:00
|
|
|
*
|
2016-09-02 00:32:49 +03:00
|
|
|
* This source code is subject to the terms of the BSD 2 Clause License and
|
|
|
|
* the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
|
|
|
|
* was not distributed with this source code in the LICENSE file, you can
|
|
|
|
* obtain it at www.aomedia.org/license/software. If the Alliance for Open
|
|
|
|
* Media Patent License 1.0 was not distributed with this source code in the
|
|
|
|
* PATENTS file, you can obtain it at www.aomedia.org/license/patent.
|
2010-05-18 19:58:33 +04:00
|
|
|
*/
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
#ifndef AOM_PORTS_MEM_H_
|
|
|
|
#define AOM_PORTS_MEM_H_
|
2013-03-06 02:12:16 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
#include "aom_config.h"
|
|
|
|
#include "aom/aom_integer.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-03 02:39:14 +04:00
|
|
|
#if (defined(__GNUC__) && __GNUC__) || defined(__SUNPRO_C)
|
2016-08-11 04:23:43 +03:00
|
|
|
#define DECLARE_ALIGNED(n, typ, val) typ val __attribute__((aligned(n)))
|
2010-05-18 19:58:33 +04:00
|
|
|
#elif defined(_MSC_VER)
|
2016-08-11 04:23:43 +03:00
|
|
|
#define DECLARE_ALIGNED(n, typ, val) __declspec(align(n)) typ val
|
2010-05-18 19:58:33 +04:00
|
|
|
#else
|
|
|
|
#warning No alignment directives known for this compiler.
|
2016-08-11 04:23:43 +03:00
|
|
|
#define DECLARE_ALIGNED(n, typ, val) typ val
|
2010-05-18 19:58:33 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Indicates that the usage of the specified variable has been audited to assure
|
|
|
|
* that it's safe to use uninitialized. Silences 'may be used uninitialized'
|
|
|
|
* warnings on gcc.
|
|
|
|
*/
|
|
|
|
#if defined(__GNUC__) && __GNUC__
|
2016-08-11 04:23:43 +03:00
|
|
|
#define UNINITIALIZED_IS_SAFE(x) x = x
|
2010-05-18 19:58:33 +04:00
|
|
|
#else
|
|
|
|
#define UNINITIALIZED_IS_SAFE(x) x
|
2014-09-10 10:32:21 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAVE_NEON && defined(_MSC_VER)
|
|
|
|
#define __builtin_prefetch(x)
|
|
|
|
#endif
|
|
|
|
|
2016-07-11 16:17:17 +03:00
|
|
|
/* Shift down with rounding for use when n >= 0, value >= 0 */
|
2016-08-11 04:23:43 +03:00
|
|
|
#define ROUND_POWER_OF_TWO(value, n) (((value) + (((1 << (n)) >> 1))) >> (n))
|
2015-05-12 05:09:22 +03:00
|
|
|
|
2016-07-11 16:17:17 +03:00
|
|
|
/* Shift down with rounding for signed integers, for use when n >= 0 */
|
2016-08-11 04:23:43 +03:00
|
|
|
#define ROUND_POWER_OF_TWO_SIGNED(value, n) \
|
|
|
|
(((value) < 0) ? -ROUND_POWER_OF_TWO(-(value), (n)) \
|
|
|
|
: ROUND_POWER_OF_TWO((value), (n)))
|
2016-05-19 15:16:42 +03:00
|
|
|
|
2015-05-12 05:09:22 +03:00
|
|
|
#define ALIGN_POWER_OF_TWO(value, n) \
|
2016-08-11 04:23:43 +03:00
|
|
|
(((value) + ((1 << (n)) - 1)) & ~((1 << (n)) - 1))
|
2015-05-12 05:09:22 +03:00
|
|
|
|
2016-08-11 04:23:43 +03:00
|
|
|
#define CONVERT_TO_SHORTPTR(x) ((uint16_t *)(((uintptr_t)(x)) << 1))
|
2016-08-31 00:01:10 +03:00
|
|
|
#if CONFIG_AOM_HIGHBITDEPTH
|
2016-08-11 04:23:43 +03:00
|
|
|
#define CONVERT_TO_BYTEPTR(x) ((uint8_t *)(((uintptr_t)(x)) >> 1))
|
2016-08-31 00:01:10 +03:00
|
|
|
#endif // CONFIG_AOM_HIGHBITDEPTH
|
2015-05-12 05:09:22 +03:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
#endif // AOM_PORTS_MEM_H_
|