diff options
author | Måns Rullgård | 2010-07-10 22:12:30 +0000 |
---|---|---|
committer | Måns Rullgård | 2010-07-10 22:12:30 +0000 |
commit | 8fc0162ac44f3e60798552ca6d19387be95cae4c (patch) | |
tree | 443f7c684a3a8be0e9b70d67a91b8572bfa1ddd2 /libavformat/sol.c | |
parent | e6b22522c94cfccda97018e52ab65da8c69d8a56 (diff) |
Add av_ prefix to bswap macros
Originally committed as revision 24170 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/sol.c')
-rw-r--r-- | libavformat/sol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/sol.c b/libavformat/sol.c index 824e56ea28..a7faacc8e8 100644 --- a/libavformat/sol.c +++ b/libavformat/sol.c @@ -34,7 +34,7 @@ static int sol_probe(AVProbeData *p) { /* 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) |