Commit 1148f739 authored by mru's avatar mru

Define av_alias if supported by compiler

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21523 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 53fd8b15
......@@ -55,6 +55,14 @@
#endif
#endif
#ifndef av_alias
#if HAVE_ATTRIBUTE_MAY_ALIAS
# define av_alias __attribute__((may_alias))
#else
# define av_alias
#endif
#endif
#ifndef INT16_MIN
#define INT16_MIN (-0x7fff - 1)
#endif
......
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