]> git.sesse.net Git - ffmpeg/blob - libavcodec/sinewin.h
Merge commit 'f1bdc234370401c032cd85184e93c7c155eb6d62'
[ffmpeg] / libavcodec / sinewin.h
1 /*
2  * Copyright (c) 2008 Robert Swain
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #ifndef AVCODEC_SINEWIN_H
22 #define AVCODEC_SINEWIN_H
23
24 #include "config.h"
25 #include "libavutil/mem.h"
26
27 #if CONFIG_HARDCODED_TABLES
28 #   define SINETABLE_CONST const
29 #else
30 #   define SINETABLE_CONST
31 #endif
32
33 #ifndef USE_FIXED
34 #define USE_FIXED 0
35 #endif
36
37 #if USE_FIXED
38 #define SINEWIN_SUFFIX(a) a ## _fixed
39 #define INTFLOAT int
40 #else
41 #define SINEWIN_SUFFIX(a) a
42 #define INTFLOAT float
43 #endif
44
45 #define SINETABLE(size) \
46     SINETABLE_CONST DECLARE_ALIGNED(32, INTFLOAT, SINEWIN_SUFFIX(ff_sine_##size))[size]
47
48 /**
49  * Generate a sine window.
50  * @param   window  pointer to half window
51  * @param   n       size of half window
52  */
53 void SINEWIN_SUFFIX(ff_sine_window_init)(INTFLOAT *window, int n);
54
55 /**
56  * initialize the specified entry of ff_sine_windows
57  */
58 void SINEWIN_SUFFIX(ff_init_ff_sine_windows)(int index);
59
60 extern SINETABLE(  32);
61 extern SINETABLE(  64);
62 extern SINETABLE( 128);
63 extern SINETABLE( 256);
64 extern SINETABLE( 512);
65 extern SINETABLE(1024);
66 extern SINETABLE(2048);
67 extern SINETABLE(4096);
68 extern SINETABLE(8192);
69
70 extern SINETABLE_CONST INTFLOAT * const SINEWIN_SUFFIX(ff_sine_windows)[14];
71
72 #endif /* AVCODEC_SINEWIN_H */