# HG changeset patch # User benoit # Date 1282577510 0 # Node ID f197db9ab43a6fa3f4a8d6ef44bd873400b39b1a # Parent 9a6cf721c0b6e6092571e7258fc992e950d521f3 Add missing parentheses to AV_NE macro. diff -r 9a6cf721c0b6 -r f197db9ab43a common.h --- a/common.h Wed Aug 18 13:50:32 2010 +0000 +++ b/common.h Mon Aug 23 15:31:50 2010 +0000 @@ -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