From 277fe2294f4f49af773ed20108772e3d62752e05 Mon Sep 17 00:00:00 2001 From: Erik Slagter Date: Mon, 20 Feb 2006 19:01:29 +0000 Subject: [PATCH] pass noise reduction option to x264 patch by Erik Slagter Originally committed as revision 5040 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/x264.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/x264.c b/libavcodec/x264.c index 43d4eb8096..ddd29e7484 100644 --- a/libavcodec/x264.c +++ b/libavcodec/x264.c @@ -222,6 +222,7 @@ X264_init(AVCodecContext *avctx) x4->params.analyse.b_fast_pskip = (avctx->flags2 & CODEC_FLAG2_FASTPSKIP); x4->params.analyse.i_trellis = avctx->trellis; + x4->params.analyse.i_noise_reduction = avctx->noise_reduction; if(avctx->level > 0) x4->params.i_level_idc = avctx->level;