From c13216ac0801ea9af373728aca7c6eda61593a4a Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 5 Jan 2016 11:37:11 +0100 Subject: avfilter/window_func: add tukey window function Signed-off-by: Paul B Mahol --- libavfilter/window_func.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/window_func.h') 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); -- cgit v1.2.3