From 94621d329f35267607560eee6a372bfa7cfbb256 Mon Sep 17 00:00:00 2001 From: Jai Menon Date: Sat, 12 Dec 2009 17:10:05 +0000 Subject: [PATCH] SVQ3 : Set avctx->pix_fmt correctly during decoder initialisation. Fixes issue 1591. Originally committed as revision 20810 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/svq3.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index 962b1df..787cfe0 100644 --- a/libavcodec/svq3.c +++ b/libavcodec/svq3.c @@ -796,6 +796,7 @@ static av_cold int svq3_decode_init(AVCodecContext *avctx) s->flags2 = avctx->flags2; s->unrestricted_mv = 1; h->is_complex=1; + avctx->pix_fmt = avctx->codec->pix_fmts[0]; if (!s->context_initialized) { s->width = avctx->width; -- 2.7.4