diff options
author | Paul B Mahol <onemda@gmail.com> | 2016-01-05 11:37:11 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2016-01-05 11:37:11 +0100 |
commit | c13216ac0801ea9af373728aca7c6eda61593a4a (patch) | |
tree | 68f4f90f9025e01e9202fe76ab59c5b6735a52fb /libavfilter/window_func.h | |
parent | c31fa1d7b44c55d8491b7e6ebe8615289aadec69 (diff) | |
download | ffmpeg-c13216ac0801ea9af373728aca7c6eda61593a4a.tar.gz |
avfilter/window_func: add tukey window function
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/window_func.h')
-rw-r--r-- | libavfilter/window_func.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/window_func.h b/libavfilter/window_func.h index eb2a3265fb..3da09d8da0 100644 --- a/libavfilter/window_func.h +++ b/libavfilter/window_func.h @@ -25,7 +25,7 @@ enum WindowFunc { WFUNC_RECT, WFUNC_HANNING, WFUNC_HAMMING, WFUNC_BLACKMAN, WFUNC_BARTLETT, WFUNC_WELCH, WFUNC_FLATTOP, WFUNC_BHARRIS, WFUNC_BNUTTALL, WFUNC_SINE, WFUNC_NUTTALL, - WFUNC_BHANN, WFUNC_LANCZOS, WFUNC_GAUSS, NB_WFUNC }; + WFUNC_BHANN, WFUNC_LANCZOS, WFUNC_GAUSS, WFUNC_TUKEY, NB_WFUNC }; void ff_generate_window_func(float *lut, int N, int win_func, float *overlap); |