FFmpeg
Loading...
Searching...
No Matches
sinewin_tablegen.h
Go to the documentation of this file.
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>
31#include "libavutil/common.h"
32
33#if !CONFIG_HARDCODED_TABLES
34#ifndef BUILD_TABLES
35#include "libavutil/thread.h"
36#endif
37
47#else
48#include "libavcodec/sinewin_tables.h"
49#endif
50
52 NULL, NULL, NULL, NULL, NULL, // unused
53 ff_sine_32, ff_sine_64, ff_sine_128,
54 ff_sine_256, ff_sine_512, ff_sine_1024,
55 ff_sine_2048, ff_sine_4096, ff_sine_8192,
56};
57
58// Generate a sine window.
60{
61 int i;
62 for(i = 0; i < n; i++)
63 window[i] = sinf((i + 0.5) * (M_PI / (2.0 * n)));
64}
65
66#if !CONFIG_HARDCODED_TABLES && !defined(BUILD_TABLES)
67#define INIT_FF_SINE_WINDOW_INIT_FUNC(index) \
68static void init_ff_sine_window_ ## index(void) \
69{ \
70 ff_sine_window_init(ff_sine_windows[index], 1 << index);\
71}
72
82
83static void (*const sine_window_init_func_array[])(void) = {
84 init_ff_sine_window_5,
85 init_ff_sine_window_6,
86 init_ff_sine_window_7,
87 init_ff_sine_window_8,
88 init_ff_sine_window_9,
89 init_ff_sine_window_10,
90 init_ff_sine_window_11,
91 init_ff_sine_window_12,
92 init_ff_sine_window_13,
93};
94
99#endif
100
102{
103 assert(index >= 5 && index < FF_ARRAY_ELEMS(ff_sine_windows));
104#if !CONFIG_HARDCODED_TABLES
105#ifdef BUILD_TABLES
107#else
109#endif
110#endif
111}
112
113#endif /* AVCODEC_SINEWIN_TABLEGEN_H */
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
common internal and external API header
#define NULL
Definition coverity.c:32
static SDL_Window * window
Definition ffplay.c:365
int index
Definition gxfenc.c:90
Macro definitions for various function/variable attributes.
#define av_cold
Definition attributes.h:117
#define AVOnce
Definition thread.h:202
static int ff_thread_once(char *control, void(*routine)(void))
Definition thread.h:205
#define AV_ONCE_INIT
Definition thread.h:203
#define sinf(x)
Definition libm.h:421
#define M_PI
Definition mathematics.h:67
SINETABLE_CONST float *const ff_sine_windows[]
#define SINETABLE(size)
Definition sinewin.h:33
#define SINETABLE_CONST
Definition sinewin.h:30
#define FF_ARRAY_ELEMS(a)
#define INIT_FF_SINE_WINDOW_INIT_FUNC(index)
av_cold void ff_init_ff_sine_windows(int index)
initialize the specified entry of ff_sine_windows
av_cold void ff_sine_window_init(float *window, int n)
Generate a sine window.
static AVOnce init_sine_window_once[9]
static void(*const sine_window_init_func_array[])(void)