Mercurial > libavformat.hg
diff sol.c @ 6248:e630da0f5861 libavformat
Add av_ prefix to bswap macros
| author | mru |
|---|---|
| date | Sat, 10 Jul 2010 22:12:30 +0000 |
| parents | a64b9fa63635 |
| children | 4aaed59641ff |
line wrap: on
line diff
--- a/sol.c Sat Jul 10 22:09:01 2010 +0000 +++ b/sol.c Sat Jul 10 22:12:30 2010 +0000 @@ -34,7 +34,7 @@ { /* check file header */ uint16_t magic; - magic=le2ne_16(*((uint16_t*)p->buf)); + magic=av_le2ne16(*((uint16_t*)p->buf)); if ((magic == 0x0B8D || magic == 0x0C0D || magic == 0x0C8D) && p->buf[2] == 'S' && p->buf[3] == 'O' && p->buf[4] == 'L' && p->buf[5] == 0)
