]> git.sesse.net Git - ffmpeg/blob - libavcodec/sinewin_tablegen.h
Merge commit 'be101bc1e357c50fcb740bc4870b3bacc93a5727'
[ffmpeg] / libavcodec / sinewin_tablegen.h
1 /*
2  * Header file for hardcoded sine windows
3  *
4  * Copyright (c) 2009 Reimar Döffinger <Reimar.Doeffinger@gmx.de>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #ifndef AVCODEC_SINEWIN_TABLEGEN_H
24 #define AVCODEC_SINEWIN_TABLEGEN_H
25
26 #include <assert.h>
27 // do not use libavutil/libm.h since this is compiled both
28 // for the host and the target and config.h is only valid for the target
29 #include <math.h>
30 #include "libavutil/attributes.h"
31 #include "libavutil/common.h"
32
33 #if !CONFIG_HARDCODED_TABLES
34 SINETABLE(  32);
35 SINETABLE(  64);
36 SINETABLE( 128);
37 SINETABLE( 256);
38 SINETABLE( 512);
39 SINETABLE(1024);
40 SINETABLE(2048);
41 SINETABLE(4096);
42 SINETABLE(8192);
43 #else
44 #if USE_FIXED
45 #include "libavcodec/sinewin_fixed_tables.h"
46 #else
47 #include "libavcodec/sinewin_tables.h"
48 #endif
49 #endif
50
51 #if USE_FIXED
52 #define SINEWIN_SUFFIX(a) a ## _fixed
53 #define INTFLOAT int
54 #define SIN_FIX(a) (int)floor((a) * 0x80000000 + 0.5)
55 #else
56 #define SINEWIN_SUFFIX(a) a
57 #define INTFLOAT float
58 #define SIN_FIX(a) a
59 #endif
60
61 SINETABLE_CONST INTFLOAT * const SINEWIN_SUFFIX(ff_sine_windows)[] = {
62     NULL, NULL, NULL, NULL, NULL, // unused
63     SINEWIN_SUFFIX(ff_sine_32) , SINEWIN_SUFFIX(ff_sine_64), SINEWIN_SUFFIX(ff_sine_128),
64     SINEWIN_SUFFIX(ff_sine_256), SINEWIN_SUFFIX(ff_sine_512), SINEWIN_SUFFIX(ff_sine_1024),
65     SINEWIN_SUFFIX(ff_sine_2048), SINEWIN_SUFFIX(ff_sine_4096), SINEWIN_SUFFIX(ff_sine_8192)
66 };
67
68 // Generate a sine window.
69 av_cold void SINEWIN_SUFFIX(ff_sine_window_init)(INTFLOAT *window, int n) {
70     int i;
71     for(i = 0; i < n; i++)
72         window[i] = SIN_FIX(sinf((i + 0.5) * (M_PI / (2.0 * n))));
73 }
74
75 av_cold void SINEWIN_SUFFIX(ff_init_ff_sine_windows)(int index) {
76     assert(index >= 0 && index < FF_ARRAY_ELEMS(SINEWIN_SUFFIX(ff_sine_windows)));
77 #if !CONFIG_HARDCODED_TABLES
78     SINEWIN_SUFFIX(ff_sine_window_init)(SINEWIN_SUFFIX(ff_sine_windows)[index], 1 << index);
79 #endif
80 }
81
82 #endif /* AVCODEC_SINEWIN_TABLEGEN_H */