FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mdct15.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017 Rostislav Pehlivanov <atomnuker@gmail.com>
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_MDCT15_H
22 #define AVCODEC_MDCT15_H
23 
24 #include <stddef.h>
25 
26 #include "fft.h"
27 
28 typedef struct MDCT15Context {
29  int fft_n;
30  int len2;
31  int len4;
32  int inverse;
35 
37 
39 
41 
42  /* 0 - 18: fft15 twiddles, 19 - 20: fft5 twiddles */
44 
45  /**
46  * Calculate a full 2N -> N MDCT
47  */
48  void (*mdct)(struct MDCT15Context *s, float *dst, const float *src, ptrdiff_t stride);
49 
50  /**
51  * Calculate the middle half of the iMDCT
52  */
53  void (*imdct_half)(struct MDCT15Context *s, float *dst, const float *src,
54  ptrdiff_t src_stride, float scale);
56 
57 /**
58  * Init an (i)MDCT of the length 2 * 15 * (2^N)
59  */
60 int ff_mdct15_init(MDCT15Context **ps, int inverse, int N, double scale);
61 
62 /**
63  * Frees a context
64  */
66 
67 #endif /* AVCODEC_MDCT15_H */
const char * s
Definition: avisynth_c.h:768
void ff_mdct15_uninit(MDCT15Context **ps)
Frees a context.
Definition: mdct15.c:48
#define src
Definition: vp8dsp.c:254
int fft_n
Definition: mdct15.h:29
#define N
Definition: vf_pp7.c:73
int ff_mdct15_init(MDCT15Context **ps, int inverse, int N, double scale)
Init an (i)MDCT of the length 2 * 15 * (2^N)
Definition: mdct15.c:101
FFTComplex * twiddle_exptab
Definition: mdct15.h:40
FFTComplex exptab[21]
Definition: mdct15.h:43
int len2
Definition: mdct15.h:30
int inverse
Definition: mdct15.h:32
void(* imdct_half)(struct MDCT15Context *s, float *dst, const float *src, ptrdiff_t src_stride, float scale)
Calculate the middle half of the iMDCT.
Definition: mdct15.h:53
Definition: fft.h:88
FFTContext ptwo_fft
Definition: mdct15.h:36
int * pfa_prereindex
Definition: mdct15.h:33
typedef void(APIENTRY *FF_PFNGLACTIVETEXTUREPROC)(GLenum texture)
FFTComplex * tmp
Definition: mdct15.h:38
int * pfa_postreindex
Definition: mdct15.h:34
int len4
Definition: mdct15.h:31
static uint32_t inverse(uint32_t v)
find multiplicative inverse modulo 2 ^ 32
Definition: asfcrypt.c:35
#define stride
void(* mdct)(struct MDCT15Context *s, float *dst, const float *src, ptrdiff_t stride)
Calculate a full 2N -> N MDCT.
Definition: mdct15.h:48