[FFmpeg-cvslog] libavcodec/smvjpegdec: pass flags / idct algo into jpeg avctx

Michael Niedermayer git at videolan.org
Thu May 30 03:37:55 CEST 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu May 30 03:30:01 2013 +0200| [455ae871a8c9a007a52c8a69e68fb9d7fa5d4ab9] | committer: Michael Niedermayer

libavcodec/smvjpegdec: pass flags / idct algo into jpeg avctx

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=455ae871a8c9a007a52c8a69e68fb9d7fa5d4ab9
---

 libavcodec/smvjpegdec.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavcodec/smvjpegdec.c b/libavcodec/smvjpegdec.c
index 9542ccc..57116c2 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;



More information about the ffmpeg-cvslog mailing list