[MPlayer-cvslog] r21267 - trunk/libmpcodecs/vd_ffmpeg.c
reimar
subversion at mplayerhq.hu
Sun Nov 26 14:26:22 CET 2006
Author: reimar
Date: Sun Nov 26 14:26:21 2006
New Revision: 21267
Modified:
trunk/libmpcodecs/vd_ffmpeg.c
Log:
Fix incorrect use of be2me_32 on a pointer, use BE_32 instead.
Modified: trunk/libmpcodecs/vd_ffmpeg.c
==============================================================================
--- trunk/libmpcodecs/vd_ffmpeg.c (original)
+++ trunk/libmpcodecs/vd_ffmpeg.c Sun Nov 26 14:26:21 2006
@@ -369,7 +369,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= be2me_32(avctx->extradata+4);
+ avctx->sub_id= BE_32(avctx->extradata+4);
// printf("%X %X %d %d\n", extrahdr[0], extrahdr[1]);
break;
More information about the MPlayer-cvslog
mailing list