diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2006-06-29 11:17:50 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-06-29 11:17:50 +0000 |
commit | c6bb50e0024005e78fd54fce14773fefb9489821 (patch) | |
tree | 40e093bcedea36e9a6c608eb20b072152fcf7914 | |
parent | 87dfe848faa875167531baca82523ff950949b09 (diff) | |
download | ffmpeg-c6bb50e0024005e78fd54fce14773fefb9489821.tar.gz |
Fix initialization of vc1_decoder (the same as wmv3_decoder).
Patch by Reimar Doeffinger.
Originally committed as revision 5544 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h263dec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 30303f8edf..1eba9db40a 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -85,6 +85,7 @@ int ff_h263_decode_init(AVCodecContext *avctx) s->h263_pred = 1; s->msmpeg4_version=5; break; + case CODEC_ID_VC1: case CODEC_ID_WMV3: s->h263_msmpeg4 = 1; s->h263_pred = 1; |