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-08-16 19:03:56 +0300
committerPaul B Mahol <onemda@gmail.com>2016-08-16 19:09:50 +0300
commitb438c2025c3e277bb506a3a7b8ec8a0d52ed3b07 (patch)
tree95525f498f466d69af642f42b1494101c39bbb67 /libavfilter/window_func.h
parent46bfc1562f187e3c04ea1b9baa1a1d0580530485 (diff)
avfilter/window_func: add cauchy, parzen and poisson window function
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 760020fc7f..4611498d47 100644
--- a/libavfilter/window_func.h
+++ b/libavfilter/window_func.h
@@ -26,7 +26,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,
- WFUNC_DOLPH, NB_WFUNC };
+ WFUNC_DOLPH, WFUNC_CAUCHY, WFUNC_PARZEN, WFUNC_POISSON,
+ NB_WFUNC };
void ff_generate_window_func(float *lut, int N, int win_func, float *overlap);