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
Add missing parentheses to AV_NE macro.
Originally committed as revision 24885 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Benoit Fouet
14 years ago
parent
c4ab519e00
commit
573af7545e
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
libavutil/common.h
+ 2
- 2
libavutil/common.h
View File
@@ -38,9 +38,9 @@
#include "libavutil/avconfig.h"
#if AV_HAVE_BIGENDIAN
# define AV_NE(be, le) be
# define AV_NE(be, le)
(
be
)
#else
# define AV_NE(be, le) le
# define AV_NE(be, le)
(
le
)
#endif
//rounded division & shift
Write
Preview
Loading…
Cancel
Save