Commit 573af754 authored by Benoit Fouet's avatar Benoit Fouet

Add missing parentheses to AV_NE macro.

Originally committed as revision 24885 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c4ab519e
......@@ -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
......
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