diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-10-09 18:13:55 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-10-09 18:13:55 +0200 |
commit | 3d262f9f326f9131e68164f1edfcb5d8273926f6 (patch) | |
tree | 8fc669ba13136131e615077923ab0f21be7243e5 /libavfilter/af_anlms.c | |
parent | 1ebac3cda9f4e73b9fc4688ab1b0a96455a6f99a (diff) | |
download | ffmpeg-streaming-3d262f9f326f9131e68164f1edfcb5d8273926f6.zip ffmpeg-streaming-3d262f9f326f9131e68164f1edfcb5d8273926f6.tar.gz |
avfilter/af_anlms: increase max limit for mu
Diffstat (limited to 'libavfilter/af_anlms.c')
-rw-r--r-- | libavfilter/af_anlms.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_anlms.c b/libavfilter/af_anlms.c index 75bd969..350beda 100644 --- a/libavfilter/af_anlms.c +++ b/libavfilter/af_anlms.c @@ -63,7 +63,7 @@ typedef struct AudioNLMSContext { static const AVOption anlms_options[] = { { "order", "set the filter order", OFFSET(order), AV_OPT_TYPE_INT, {.i64=256}, 1, INT16_MAX, A }, - { "mu", "set the filter mu", OFFSET(mu), AV_OPT_TYPE_FLOAT, {.dbl=0.75}, 0, 1, A }, + { "mu", "set the filter mu", OFFSET(mu), AV_OPT_TYPE_FLOAT, {.dbl=0.75}, 0, 2, A }, { "eps", "set the filter eps", OFFSET(eps), AV_OPT_TYPE_FLOAT, {.dbl=1}, 0, 1, A }, { "leakage", "set the filter leakage", OFFSET(leakage), AV_OPT_TYPE_FLOAT, {.dbl=0}, 0, 1, A }, { "out_mode", "set output mode", OFFSET(output_mode), AV_OPT_TYPE_INT, {.i64=OUT_MODE}, 0, NB_OMODES-1, A, "mode" }, |