2 * MDCT/IMDCT transforms
3 * Copyright (c) 2002 Fabrice Bellard.
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25 * MDCT/IMDCT transforms.
28 // Generate a Kaiser-Bessel Derived Window.
29 #define BESSEL_I0_ITER 50 // default: 50 iterations of Bessel I0 approximation
30 void ff_kbd_window_init(float *window
, float alpha
, int n
)
33 double sum
= 0.0, bessel
, tmp
;
34 double local_window
[n
];
35 double alpha2
= (alpha
* M_PI
/ n
) * (alpha
* M_PI
/ n
);
37 for (i
= 0; i
< n
; i
++) {
38 tmp
= i
* (n
- i
) * alpha2
;
40 for (j
= BESSEL_I0_ITER
; j
> 0; j
--)
41 bessel
= bessel
* tmp
/ (j
* j
) + 1;
43 local_window
[i
] = sum
;
47 for (i
= 0; i
< n
; i
++)
48 window
[i
] = sqrt(local_window
[i
] / sum
);
51 // Generate a sine window.
52 void ff_sine_window_init(float *window
, int n
) {
54 for(i
= 0; i
< n
; i
++)
55 window
[i
] = sin((i
+ 0.5) / (2 * n
) * M_PI
);
59 * init MDCT or IMDCT computation.
61 int ff_mdct_init(MDCTContext
*s
, int nbits
, int inverse
)
66 memset(s
, 0, sizeof(*s
));
71 s
->tcos
= av_malloc(n4
* sizeof(FFTSample
));
74 s
->tsin
= av_malloc(n4
* sizeof(FFTSample
));
79 alpha
= 2 * M_PI
* (i
+ 1.0 / 8.0) / n
;
80 s
->tcos
[i
] = -cos(alpha
);
81 s
->tsin
[i
] = -sin(alpha
);
83 if (ff_fft_init(&s
->fft
, s
->nbits
- 2, inverse
) < 0)
92 /* complex multiplication: p = a * b */
93 #define CMUL(pre, pim, are, aim, bre, bim) \
99 (pre) = _are * _bre - _aim * _bim;\
100 (pim) = _are * _bim + _aim * _bre;\
104 * Compute inverse MDCT of size N = 2^nbits
105 * @param output N samples
106 * @param input N/2 samples
107 * @param tmp N/2 samples
109 void ff_imdct_calc(MDCTContext
*s
, FFTSample
*output
,
110 const FFTSample
*input
, FFTSample
*tmp
)
112 int k
, n8
, n4
, n2
, n
, j
;
113 const uint16_t *revtab
= s
->fft
.revtab
;
114 const FFTSample
*tcos
= s
->tcos
;
115 const FFTSample
*tsin
= s
->tsin
;
116 const FFTSample
*in1
, *in2
;
117 FFTComplex
*z
= (FFTComplex
*)tmp
;
126 in2
= input
+ n2
- 1;
127 for(k
= 0; k
< n4
; k
++) {
129 CMUL(z
[j
].re
, z
[j
].im
, *in2
, *in1
, tcos
[k
], tsin
[k
]);
133 ff_fft_calc(&s
->fft
, z
);
135 /* post rotation + reordering */
137 for(k
= 0; k
< n4
; k
++) {
138 CMUL(z
[k
].re
, z
[k
].im
, z
[k
].re
, z
[k
].im
, tcos
[k
], tsin
[k
]);
140 for(k
= 0; k
< n8
; k
++) {
141 output
[2*k
] = -z
[n8
+ k
].im
;
142 output
[n2
-1-2*k
] = z
[n8
+ k
].im
;
144 output
[2*k
+1] = z
[n8
-1-k
].re
;
145 output
[n2
-1-2*k
-1] = -z
[n8
-1-k
].re
;
147 output
[n2
+ 2*k
]=-z
[k
+n8
].re
;
148 output
[n
-1- 2*k
]=-z
[k
+n8
].re
;
150 output
[n2
+ 2*k
+1]=z
[n8
-k
-1].im
;
151 output
[n
-2 - 2 * k
] = z
[n8
-k
-1].im
;
156 * Compute MDCT of size N = 2^nbits
157 * @param input N samples
158 * @param out N/2 samples
159 * @param tmp temporary storage of N/2 samples
161 void ff_mdct_calc(MDCTContext
*s
, FFTSample
*out
,
162 const FFTSample
*input
, FFTSample
*tmp
)
164 int i
, j
, n
, n8
, n4
, n2
, n3
;
165 FFTSample re
, im
, re1
, im1
;
166 const uint16_t *revtab
= s
->fft
.revtab
;
167 const FFTSample
*tcos
= s
->tcos
;
168 const FFTSample
*tsin
= s
->tsin
;
169 FFTComplex
*x
= (FFTComplex
*)tmp
;
179 re
= -input
[2*i
+3*n4
] - input
[n3
-1-2*i
];
180 im
= -input
[n4
+2*i
] + input
[n4
-1-2*i
];
182 CMUL(x
[j
].re
, x
[j
].im
, re
, im
, -tcos
[i
], tsin
[i
]);
184 re
= input
[2*i
] - input
[n2
-1-2*i
];
185 im
= -(input
[n2
+2*i
] + input
[n
-1-2*i
]);
187 CMUL(x
[j
].re
, x
[j
].im
, re
, im
, -tcos
[n8
+ i
], tsin
[n8
+ i
]);
190 ff_fft_calc(&s
->fft
, x
);
196 CMUL(re1
, im1
, re
, im
, -tsin
[i
], -tcos
[i
]);
202 void ff_mdct_end(MDCTContext
*s
)