[MPlayer-cvslog] CVS: main/libmpcodecs vd_ffmpeg.c,1.150,1.151
Reimar Döffinger CVS
syncmail at mplayerhq.hu
Fri Sep 16 13:30:36 CEST 2005
CVS change done by Reimar Döffinger CVS
Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var2/tmp/cvs-serv3345
Modified Files:
vd_ffmpeg.c
Log Message:
print the first 16 bytes of frame data with -v -v, helps detect when
the demuxer messes up packetizing (-dumpvideo does not help here :-( )
Index: vd_ffmpeg.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd_ffmpeg.c,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- vd_ffmpeg.c 17 Jul 2005 00:18:42 -0000 1.150
+++ vd_ffmpeg.c 16 Sep 2005 11:30:33 -0000 1.151
@@ -813,6 +813,8 @@
data+= sizeof(dp_hdr_t);
}
+ mp_msg(MSGT_DECVIDEO, MSGL_DBG2, "vd_ffmpeg data: %04x, %04x, %04x, %04x\n",
+ ((int *)data)[0], ((int *)data)[1], ((int *)data)[2], ((int *)data)[3]);
ret = avcodec_decode_video(avctx, pic,
&got_picture, data, len);
More information about the MPlayer-cvslog
mailing list