From c6bb50e0024005e78fd54fce14773fefb9489821 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reimar=20D=C3=B6ffinger?= Date: Thu, 29 Jun 2006 11:17:50 +0000 Subject: [PATCH] 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 --- libavcodec/h263dec.c | 1 + 1 file changed, 1 insertion(+) 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;