summaryrefslogtreecommitdiff
path: root/libavfilter/window_func.h
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2016-08-16 14:30:43 +0200
committerPaul B Mahol <onemda@gmail.com>2016-08-16 15:56:12 +0200
commitea58dd2bebf8748be4c2716936e1056dc6c507fc (patch)
treee272a8b6d567a6877e58ba3853c5904babb0a52a /libavfilter/window_func.h
parentc3c4c72665b9fbb06d8e84e6350c1148b3c55498 (diff)
avfilter/window_func: add dolph window
Diffstat (limited to 'libavfilter/window_func.h')
-rw-r--r--libavfilter/window_func.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/window_func.h b/libavfilter/window_func.h
index 3da09d8da0..760020fc7f 100644
--- a/libavfilter/window_func.h
+++ b/libavfilter/window_func.h
@@ -25,7 +25,8 @@
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, WFUNC_TUKEY, NB_WFUNC };
+ WFUNC_BHANN, WFUNC_LANCZOS, WFUNC_GAUSS, WFUNC_TUKEY,
+ WFUNC_DOLPH, NB_WFUNC };
void ff_generate_window_func(float *lut, int N, int win_func, float *overlap);