diff options
author | Jonathan Campbell <jonathan@castus.tv> | 2016-09-03 03:34:01 -0700 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-01-22 02:29:16 +0100 |
commit | d5d474aea53822642f0465825f8a94cb2327e1e6 (patch) | |
tree | dc60310bade6ffa810181eb0f0ec92dc41241cdf /libavcodec/ac3dec_float.c | |
parent | 76c5a69e26afbfdfc5b6f538594ea12efa31fc9a (diff) | |
download | ffmpeg-d5d474aea53822642f0465825f8a94cb2327e1e6.tar.gz |
avcodec/ac3dec: add consistent noise generation option.
use av_lfg_init_from_data() to seed AC-3 dithering from the AC-3 frame
data to make it consistent given the same AC-3 frame, if option is set.
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/ac3dec_float.c')
-rw-r--r-- | libavcodec/ac3dec_float.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/ac3dec_float.c b/libavcodec/ac3dec_float.c index 0a5319a303..b85a4ce336 100644 --- a/libavcodec/ac3dec_float.c +++ b/libavcodec/ac3dec_float.c @@ -32,6 +32,7 @@ #include "ac3dec.c" static const AVOption options[] = { + { "cons_noisegen", "enable consistent noise generation", OFFSET(consistent_noise_generation), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, PAR }, { "drc_scale", "percentage of dynamic range compression to apply", OFFSET(drc_scale), AV_OPT_TYPE_FLOAT, {.dbl = 1.0}, 0.0, 6.0, PAR }, { "heavy_compr", "enable heavy dynamic range compression", OFFSET(heavy_compression), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, PAR }, { "target_level", "target level in -dBFS (0 not applied)", OFFSET(target_level), AV_OPT_TYPE_INT, {.i64 = 0 }, -31, 0, PAR }, |