diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-08-27 02:59:43 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-08-27 02:59:43 +0200 |
commit | 7f9656f10df564a3d9b913420c7aca0e24f17f82 (patch) | |
tree | 763be0a8ea4b0d12cdf9915abe2ec31ed87b73b8 | |
parent | 319440e54f47891a1ab27ffb73d783895f225fe8 (diff) | |
download | ffmpeg-7f9656f10df564a3d9b913420c7aca0e24f17f82.tar.gz |
lavc/dnxhdenc: Fix ibias default.
Fixes a regression since a8ab64d2 reported by Rens Dijkshoorn, rens offlinemedia nl.
-rw-r--r-- | libavcodec/dnxhdenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c index f254b46ebc..af843996e9 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 } }; |