diff options
author | Paul B Mahol <onemda@gmail.com> | 2016-03-04 22:20:12 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2016-03-04 22:20:12 +0100 |
commit | f81c81cc3abb807ae5a763ab701fe662dd9a5d81 (patch) | |
tree | 1c49ac7e4e6384076286d060e8f444ae57452448 /libavfilter/af_afftfilt.c | |
parent | 781195fa6229fbeea81e134eb84d7ba6effdb9b9 (diff) | |
download | ffmpeg-f81c81cc3abb807ae5a763ab701fe662dd9a5d81.tar.gz |
avfilter/af_afftfilt: add option for 17 fft case
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/af_afftfilt.c')
-rw-r--r-- | libavfilter/af_afftfilt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/af_afftfilt.c b/libavfilter/af_afftfilt.c index b4c0937f6b..3fc1a1b4c9 100644 --- a/libavfilter/af_afftfilt.c +++ b/libavfilter/af_afftfilt.c @@ -74,6 +74,7 @@ static const AVOption afftfilt_options[] = { { "w16384", 0, 0, AV_OPT_TYPE_CONST, {.i64=14}, 0, 0, A, "fft" }, { "w32768", 0, 0, AV_OPT_TYPE_CONST, {.i64=15}, 0, 0, A, "fft" }, { "w65536", 0, 0, AV_OPT_TYPE_CONST, {.i64=16}, 0, 0, A, "fft" }, + { "w131072",0, 0, AV_OPT_TYPE_CONST, {.i64=17}, 0, 0, A, "fft" }, { "win_func", "set window function", OFFSET(win_func), AV_OPT_TYPE_INT, {.i64 = WFUNC_HANNING}, 0, NB_WFUNC-1, A, "win_func" }, { "rect", "Rectangular", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_RECT}, 0, 0, A, "win_func" }, { "bartlett", "Bartlett", 0, AV_OPT_TYPE_CONST, {.i64=WFUNC_BARTLETT}, 0, 0, A, "win_func" }, |