This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Define av_alias if supported by compiler
Originally committed as revision 21523 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Måns Rullgård
16 years ago
parent
dffb41b953
commit
788627dea6
1 changed files
with
8 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-0
libavutil/internal.h
+ 8
- 0
libavutil/internal.h
View File
@@ -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
Write
Preview
Loading…
Cancel
Save