diff options
author | Paul B Mahol <onemda@gmail.com> | 2016-08-16 18:03:56 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2016-08-16 18:09:50 +0200 |
commit | b438c2025c3e277bb506a3a7b8ec8a0d52ed3b07 (patch) | |
tree | 95525f498f466d69af642f42b1494101c39bbb67 /libavfilter/window_func.h | |
parent | 46bfc1562f187e3c04ea1b9baa1a1d0580530485 (diff) | |
download | ffmpeg-b438c2025c3e277bb506a3a7b8ec8a0d52ed3b07.tar.gz |
avfilter/window_func: add cauchy, parzen and poisson window function
Diffstat (limited to 'libavfilter/window_func.h')
-rw-r--r-- | libavfilter/window_func.h | 3 |
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); |