[MPlayer-cvslog] r21964 - trunk/libmpcodecs/vd_ffmpeg.c

reimar subversion at mplayerhq.hu
Sat Jan 20 00:15:54 CET 2007


Author: reimar
Date: Sat Jan 20 00:15:53 2007
New Revision: 21964

Modified:
   trunk/libmpcodecs/vd_ffmpeg.c

Log:
BE_32 -> AV_RB32


Modified: trunk/libmpcodecs/vd_ffmpeg.c
==============================================================================
--- trunk/libmpcodecs/vd_ffmpeg.c	(original)
+++ trunk/libmpcodecs/vd_ffmpeg.c	Sat Jan 20 00:15:53 2007
@@ -372,7 +372,7 @@
 	    avctx->extradata = av_mallocz(avctx->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
 	    memcpy(avctx->extradata, sh->bih+1, avctx->extradata_size);
 	}
-	avctx->sub_id= BE_32(avctx->extradata+4);
+	avctx->sub_id= AV_RB32(avctx->extradata+4);
 
 //        printf("%X %X %d %d\n", extrahdr[0], extrahdr[1]);
         break;



More information about the MPlayer-cvslog mailing list