diff ac3_parser.c @ 12128:ee740a4e80c5 libavcodec

bswap: change ME to NE in macro names Other parts of FFmpeg use NE (native endian) rather than ME (machine). This makes it consistent.
author mru
date Sat, 10 Jul 2010 22:09:01 +0000
parents 6e15ce7ca0ca
children 8b28e74de2c0
line wrap: on
line diff
--- a/ac3_parser.c	Sat Jul 10 14:36:53 2010 +0000
+++ b/ac3_parser.c	Sat Jul 10 22:09:01 2010 +0000
@@ -164,7 +164,7 @@
     union {
         uint64_t u64;
         uint8_t  u8[8];
-    } tmp = { be2me_64(state) };
+    } tmp = { be2ne_64(state) };
     AC3HeaderInfo hdr;
     GetBitContext gbc;