diff options
author | Paul B Mahol <onemda@gmail.com> | 2015-12-28 18:39:31 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2015-12-28 18:54:55 +0100 |
commit | 45b3e6e04e8e93b6ccacf4207b99596e044b72af (patch) | |
tree | 221e62c2a43d2c3dba77cfc0936fdef6b810ab62 /libavfilter/window_func.h | |
parent | 67771ac4b894112b743b37e6df24b0d4f27a120b (diff) | |
download | ffmpeg-45b3e6e04e8e93b6ccacf4207b99596e044b72af.tar.gz |
avfilter: move window function generation into separate file
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/window_func.h')
-rw-r--r-- | libavfilter/window_func.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/libavfilter/window_func.h b/libavfilter/window_func.h new file mode 100644 index 0000000000..eb2a3265fb --- /dev/null +++ b/libavfilter/window_func.h @@ -0,0 +1,32 @@ +/* + * Copyright (c) 2015 Paul B Mahol + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * FFmpeg is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with FFmpeg; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + + +#ifndef AVFILTER_WINDOW_FUNC_H +#define AVFILTER_WINDOW_FUNC_H + +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 }; + +void ff_generate_window_func(float *lut, int N, int win_func, float *overlap); + +#endif /* AVFILTER_WINDOW_FUNC_H */ |