Add av_ prefix to bswap macros

Originally committed as revision 24170 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård
2010-07-10 22:12:30 +00:00
parent e6b22522c9
commit 8fc0162ac4
51 changed files with 175 additions and 175 deletions

View File

@@ -164,7 +164,7 @@ static int ac3_sync(uint64_t state, AACAC3ParseContext *hdr_info,
union {
uint64_t u64;
uint8_t u8[8];
} tmp = { be2ne_64(state) };
} tmp = { av_be2ne64(state) };
AC3HeaderInfo hdr;
GetBitContext gbc;