Commit d6cc4a47 authored by michael's avatar michael

av_flatten to make the similarly named attribute available.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17105 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent efb2473f
......@@ -77,6 +77,14 @@
#endif
#endif
#ifndef av_flatten
#if defined(__GNUC__) && (__GNUC__ > 4 || __GNUC__ == 4 && __GNUC_MINOR__ > 0)
# 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))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment