diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2010-07-10 14:36:53 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2010-07-10 14:36:53 +0000 |
commit | 42ff9d7a586c93bf145a11fe1d54410d8fe0fa1b (patch) | |
tree | 548610fe88472351869da3e29ac8fae22a412f81 /libavcodec/vc1.c | |
parent | 42d1e7a287f0395a7c00c6ff5b288e5324062dd1 (diff) | |
download | ffmpeg-42ff9d7a586c93bf145a11fe1d54410d8fe0fa1b.tar.gz |
Make WMV3 decoder print more errors when decoding beta WMV9 files.
As a side effect it will also decode a lot of P-frames from those.
Originally committed as revision 24161 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 7d00072b7a..cca345df38 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -388,7 +388,7 @@ int vc1_decode_sequence_header(AVCodecContext *avctx, VC1Context *v, GetBitConte // av_log(avctx, AV_LOG_ERROR, // "0 for reserved RES_RTM_FLAG is forbidden\n"); av_log(avctx, AV_LOG_ERROR, - "Old WMV3 version detected, only I-frames will be decoded\n"); + "Old WMV3 version detected, some frames may be decoded incorrectly\n"); //return -1; } //TODO: figure out what they mean (always 0x402F) |