From 6b53e173cfd883b8571caefe2761a0360a8ec817 Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Fri, 11 Aug 2006 04:41:30 +0000 Subject: [PATCH] Disable B-frames decoding until I return and finish their proper decoding. Originally committed as revision 5980 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vc1.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 57ff96e..e61c801 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -3278,6 +3278,7 @@ static int vc1_decode_frame(AVCodecContext *avctx, return -1; if(s->pict_type != I_TYPE && !v->res_rtm_flag)return -1; + if(s->pict_type == B_TYPE)return -1; // for hurry_up==5 s->current_picture.pict_type= s->pict_type; -- 2.7.4