diff mov.c @ 6248:e630da0f5861 libavformat

Add av_ prefix to bswap macros
author mru
date Sat, 10 Jul 2010 22:12:30 +0000
parents fceb0e489495
children b6e3e7876e4c
line wrap: on
line diff
--- a/mov.c	Sat Jul 10 22:09:01 2010 +0000
+++ b/mov.c	Sat Jul 10 22:12:30 2010 +0000
@@ -993,7 +993,7 @@
         st->codec->codec_tag = format;
         id = ff_codec_get_id(codec_movaudio_tags, format);
         if (id<=0 && ((format&0xFFFF) == 'm'+('s'<<8) || (format&0xFFFF) == 'T'+('S'<<8)))
-            id = ff_codec_get_id(ff_codec_wav_tags, bswap_32(format)&0xFFFF);
+            id = ff_codec_get_id(ff_codec_wav_tags, av_bswap32(format)&0xFFFF);
 
         if (st->codec->codec_type != AVMEDIA_TYPE_VIDEO && id > 0) {
             st->codec->codec_type = AVMEDIA_TYPE_AUDIO;