[FFmpeg-cvslog] lavc/dnxhdenc: Fix ibias default.

Carl Eugen Hoyos git at videolan.org
Thu Aug 27 03:01:20 CEST 2015


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Thu Aug 27 02:59:43 2015 +0200| [7f9656f10df564a3d9b913420c7aca0e24f17f82] | committer: Carl Eugen Hoyos

lavc/dnxhdenc: Fix ibias default.

Fixes a regression since a8ab64d2 reported by Rens Dijkshoorn, rens offlinemedia nl.

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

 libavcodec/dnxhdenc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c
index f254b46..af84399 100644
--- a/libavcodec/dnxhdenc.c
+++ b/libavcodec/dnxhdenc.c
@@ -48,7 +48,7 @@ static const AVOption options[] = {
         offsetof(DNXHDEncContext, nitris_compat), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE },
     { "ibias", "intra quant bias",
         offsetof(DNXHDEncContext, intra_quant_bias), AV_OPT_TYPE_INT,
-        { .i64 = FF_DEFAULT_QUANT_BIAS }, INT_MIN, INT_MAX, VE },
+        { .i64 = 0 }, INT_MIN, INT_MAX, VE },
     { NULL }
 };
 



More information about the ffmpeg-cvslog mailing list