Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2016-01-05 13:37:11 +0300
committerPaul B Mahol <onemda@gmail.com>2016-01-05 13:37:11 +0300
commitc13216ac0801ea9af373728aca7c6eda61593a4a (patch)
tree68f4f90f9025e01e9202fe76ab59c5b6735a52fb /libavfilter/window_func.h
parentc31fa1d7b44c55d8491b7e6ebe8615289aadec69 (diff)
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.h2
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);