From 455ae871a8c9a007a52c8a69e68fb9d7fa5d4ab9 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 30 May 2013 03:30:01 +0200 Subject: [PATCH] libavcodec/smvjpegdec: pass flags / idct algo into jpeg avctx Signed-off-by: Michael Niedermayer --- libavcodec/smvjpegdec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/smvjpegdec.c b/libavcodec/smvjpegdec.c index 9542ccc899..57116c2900 100644 --- a/libavcodec/smvjpegdec.c +++ b/libavcodec/smvjpegdec.c @@ -109,6 +109,8 @@ static av_cold int smvjpeg_decode_init(AVCodecContext *avctx) s->avctx = avcodec_alloc_context3(codec); av_dict_set(&thread_opt, "threads", "1", 0); + s->avctx->flags = avctx->flags; + s->avctx->idct_algo = avctx->idct_algo; if (ff_codec_open2_recursive(s->avctx, codec, &thread_opt) < 0) { av_log(avctx, AV_LOG_ERROR, "MJPEG codec failed to open\n"); ret = -1;