[FFmpeg-cvslog] r13428 - trunk/libavcodec/h263.c
michael
subversion
Mon May 26 13:32:43 CEST 2008
Author: michael
Date: Mon May 26 13:32:42 2008
New Revision: 13428
Log:
Warn about packed B frames. (especially usefull if the file in question is
not an avi ...)
Modified:
trunk/libavcodec/h263.c
Modified: trunk/libavcodec/h263.c
==============================================================================
--- trunk/libavcodec/h263.c (original)
+++ trunk/libavcodec/h263.c Mon May 26 13:32:42 2008
@@ -5751,6 +5751,8 @@ static int decode_user_data(MpegEncConte
s->divx_version= ver;
s->divx_build= build;
s->divx_packed= e==3 && last=='p';
+ if(s->divx_packed)
+ av_log(s->avctx, AV_LOG_WARNING, "Invalid and inefficient vfw-avi packed B frames detected\n");
}
/* ffmpeg detection */
More information about the ffmpeg-cvslog
mailing list