summaryrefslogtreecommitdiff
path: root/libavcodec/h263.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-05-26 11:32:42 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-05-26 11:32:42 +0000
commitbc545029bfd4b158d834bfa99ca2c3f27b82fae2 (patch)
tree0cfdbc8e79657761cc470d997875c357c0b21193 /libavcodec/h263.c
parent0bf017c48b3264d03b8e6d3f70c38f488bdd2191 (diff)
Warn about packed B-frames. (especially useful if the file in question is
not an avi ...) Originally committed as revision 13428 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263.c')
-rw-r--r--libavcodec/h263.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c
index ad54203930..d1ea3946d9 100644
--- a/libavcodec/h263.c
+++ b/libavcodec/h263.c
@@ -5751,6 +5751,8 @@ static int decode_user_data(MpegEncContext *s, GetBitContext *gb){
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 */