2010-03-08 21:28:56 +00:00
|
|
|
/*
|
|
|
|
* copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2010-03-08 21:28:56 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2010-03-08 21:28:56 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2010-03-08 21:28:56 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2010-03-08 21:28:56 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-04-20 14:45:34 +00:00
|
|
|
* @file
|
2010-03-08 21:28:56 +00:00
|
|
|
* Macro definitions for various function/variable attributes
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AVUTIL_ATTRIBUTES_H
|
|
|
|
#define AVUTIL_ATTRIBUTES_H
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
# define AV_GCC_VERSION_AT_LEAST(x,y) (__GNUC__ > x || __GNUC__ == x && __GNUC_MINOR__ >= y)
|
|
|
|
#else
|
|
|
|
# define AV_GCC_VERSION_AT_LEAST(x,y) 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef av_always_inline
|
|
|
|
#if AV_GCC_VERSION_AT_LEAST(3,1)
|
|
|
|
# define av_always_inline __attribute__((always_inline)) inline
|
|
|
|
#else
|
|
|
|
# define av_always_inline inline
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef av_noinline
|
|
|
|
#if AV_GCC_VERSION_AT_LEAST(3,1)
|
|
|
|
# define av_noinline __attribute__((noinline))
|
|
|
|
#else
|
|
|
|
# define av_noinline
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef av_pure
|
|
|
|
#if AV_GCC_VERSION_AT_LEAST(3,1)
|
|
|
|
# define av_pure __attribute__((pure))
|
|
|
|
#else
|
|
|
|
# define av_pure
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef av_const
|
|
|
|
#if AV_GCC_VERSION_AT_LEAST(2,6)
|
|
|
|
# define av_const __attribute__((const))
|
|
|
|
#else
|
|
|
|
# define av_const
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef av_cold
|
2011-03-23 11:30:44 +00:00
|
|
|
#if AV_GCC_VERSION_AT_LEAST(4,3)
|
2010-03-08 21:28:56 +00:00
|
|
|
# define av_cold __attribute__((cold))
|
|
|
|
#else
|
|
|
|
# define av_cold
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef av_flatten
|
2011-03-23 11:30:44 +00:00
|
|
|
#if AV_GCC_VERSION_AT_LEAST(4,1)
|
2010-03-08 21:28:56 +00:00
|
|
|
# define av_flatten __attribute__((flatten))
|
|
|
|
#else
|
|
|
|
# define av_flatten
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef attribute_deprecated
|
|
|
|
#if AV_GCC_VERSION_AT_LEAST(3,1)
|
|
|
|
# define attribute_deprecated __attribute__((deprecated))
|
|
|
|
#else
|
|
|
|
# define attribute_deprecated
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef av_unused
|
|
|
|
#if defined(__GNUC__)
|
|
|
|
# define av_unused __attribute__((unused))
|
|
|
|
#else
|
|
|
|
# define av_unused
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2011-01-31 02:19:30 +00:00
|
|
|
/**
|
|
|
|
* Mark a variable as used and prevent the compiler from optimizing it
|
|
|
|
* away. This is useful for variables accessed only from inline
|
|
|
|
* assembler without the compiler being aware.
|
|
|
|
*/
|
|
|
|
#ifndef av_used
|
|
|
|
#if AV_GCC_VERSION_AT_LEAST(3,1)
|
|
|
|
# define av_used __attribute__((used))
|
|
|
|
#else
|
|
|
|
# define av_used
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2010-05-13 16:30:58 +00:00
|
|
|
#ifndef av_alias
|
2011-03-23 11:30:44 +00:00
|
|
|
#if AV_GCC_VERSION_AT_LEAST(3,3)
|
2010-05-13 16:30:58 +00:00
|
|
|
# define av_alias __attribute__((may_alias))
|
|
|
|
#else
|
|
|
|
# define av_alias
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2010-03-08 21:28:56 +00:00
|
|
|
#ifndef av_uninit
|
|
|
|
#if defined(__GNUC__) && !defined(__ICC)
|
|
|
|
# define av_uninit(x) x=x
|
|
|
|
#else
|
|
|
|
# define av_uninit(x) x
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2010-04-02 01:03:27 +00:00
|
|
|
#ifdef __GNUC__
|
|
|
|
# define av_builtin_constant_p __builtin_constant_p
|
2011-06-17 07:30:15 +00:00
|
|
|
# define av_printf_format(fmtpos, attrpos) __attribute__((__format__(__printf__, fmtpos, attrpos)))
|
2010-04-02 01:03:27 +00:00
|
|
|
#else
|
|
|
|
# define av_builtin_constant_p(x) 0
|
2011-06-17 07:30:15 +00:00
|
|
|
# define av_printf_format(fmtpos, attrpos)
|
2010-04-02 01:03:27 +00:00
|
|
|
#endif
|
|
|
|
|
2010-03-08 21:28:56 +00:00
|
|
|
#endif /* AVUTIL_ATTRIBUTES_H */
|