40 for (i = 0; i <
n; i += 2) {
41 accu += (int64_t)x[i + 0][0] * x[i + 0][0];
42 accu += (int64_t)x[i + 0][1] * x[i + 0][1];
43 accu += (int64_t)x[i + 1][0] * x[i + 1][0];
44 accu += (int64_t)x[i + 1][1] * x[i + 1][1];
47 i = (int)(accu >> 32);
52 while (
FFABS(i) < 0x40000000) {
60 i = (int)((accu + round) >> nz);
70 for (i = 1; i < 64; i += 2)
79 for (k = 1; k < 32; k++) {
80 z[64+2*k ] = -z[64 - k];
81 z[64+2*k+1] = z[ k + 1];
88 for (k = 0; k < 32; k++) {
97 for (i = 0; i < 32; i++) {
98 v[ i] = ( src[63 - 2*i ] + 0x10) >> 5;
99 v[63 - i] = (-src[63 - 2*i - 1] + 0x10) >> 5;
105 int nz, mant, expo,
round;
106 int i = (int)(accu >> 32);
111 while (
FFABS(i) < 0x40000000) {
119 mant = (int)((accu + round) >> nz);
120 mant = (mant + 0x40)>>7;
129 int64_t real_sum, imag_sum;
130 int64_t accu_re = 0, accu_im = 0;
133 for (i = 1; i < 38; i++) {
134 accu_re += (int64_t)x[i][0] * x[i+lag][0];
135 accu_re += (int64_t)x[i][1] * x[i+lag][1];
136 accu_im += (int64_t)x[i][0] * x[i+lag][1];
137 accu_im -= (int64_t)x[i][1] * x[i+lag][0];
143 accu_re += (int64_t)x[ 0][0] * x[lag][0];
144 accu_re += (int64_t)x[ 0][1] * x[lag][1];
145 accu_im += (int64_t)x[ 0][0] * x[lag][1];
146 accu_im -= (int64_t)x[ 0][1] * x[lag][0];
154 accu_re += (int64_t)x[38][0] * x[39][0];
155 accu_re += (int64_t)x[38][1] * x[39][1];
156 accu_im += (int64_t)x[38][0] * x[39][1];
157 accu_im -= (int64_t)x[38][1] * x[39][0];
163 for (i = 1; i < 38; i++) {
164 accu_re += (int64_t)x[i][0] * x[i][0];
165 accu_re += (int64_t)x[i][1] * x[i][1];
168 accu_re += (int64_t)x[ 0][0] * x[ 0][0];
169 accu_re += (int64_t)x[ 0][1] * x[ 0][1];
174 accu_re += (int64_t)x[38][0] * x[38][0];
175 accu_re += (int64_t)x[38][1] * x[38][1];
189 const int alpha0[2],
const int alpha1[2],
196 accu = (int64_t)alpha0[0] * bw;
197 alpha[2] = (int)((accu + 0x40000000) >> 31);
198 accu = (int64_t)alpha0[1] * bw;
199 alpha[3] = (int)((accu + 0x40000000) >> 31);
200 accu = (int64_t)bw * bw;
201 bw = (int)((accu + 0x40000000) >> 31);
202 accu = (int64_t)alpha1[0] * bw;
203 alpha[0] = (int)((accu + 0x40000000) >> 31);
204 accu = (int64_t)alpha1[1] * bw;
205 alpha[1] = (int)((accu + 0x40000000) >> 31);
207 for (i = start; i <
end; i++) {
208 accu = (int64_t)X_low[i][0] * 0x20000000;
209 accu += (int64_t)X_low[i - 2][0] * alpha[0];
210 accu -= (int64_t)X_low[i - 2][1] * alpha[1];
211 accu += (int64_t)X_low[i - 1][0] * alpha[2];
212 accu -= (int64_t)X_low[i - 1][1] * alpha[3];
213 X_high[i][0] = (int)((accu + 0x10000000) >> 29);
215 accu = (int64_t)X_low[i][1] * 0x20000000;
216 accu += (int64_t)X_low[i - 2][1] * alpha[0];
217 accu += (int64_t)X_low[i - 2][0] * alpha[1];
218 accu += (int64_t)X_low[i - 1][1] * alpha[2];
219 accu += (int64_t)X_low[i - 1][0] * alpha[3];
220 X_high[i][1] = (int)((accu + 0x10000000) >> 29);
225 const SoftFloat *g_filt,
int m_max, intptr_t ixh)
230 for (m = 0; m < m_max; m++) {
231 r = 1 << (22-g_filt[
m].
exp);
232 accu = (int64_t)X_high[m][ixh][0] * ((g_filt[m].mant + 0x40)>>7);
233 Y[
m][0] = (int)((accu + r) >> (23-g_filt[
m].
exp));
235 accu = (int64_t)X_high[m][ixh][1] * ((g_filt[m].mant + 0x40)>>7);
236 Y[
m][1] = (int)((accu + r) >> (23-g_filt[
m].
exp));
250 for (m = 0; m < m_max; m++) {
253 noise = (noise + 1) & 0x1ff;
257 shift = 22 - s_m[
m].
exp;
259 round = 1 << (shift-1);
260 y0 += (s_m[
m].
mant * phi_sign0 +
round) >> shift;
261 y1 += (s_m[
m].
mant * phi_sign1 +
round) >> shift;
267 shift = 22 - q_filt[
m].
exp;
269 round = 1 << (shift-1);
271 accu = (int64_t)q_filt[m].mant * ff_sbr_noise_table_fixed[noise][0];
272 tmp = (int)((accu + 0x40000000) >> 31);
273 y0 += (tmp +
round) >> shift;
275 accu = (int64_t)q_filt[m].mant * ff_sbr_noise_table_fixed[noise][1];
276 tmp = (int)((accu + 0x40000000) >> 31);
277 y1 += (tmp +
round) >> shift;
282 phi_sign1 = -phi_sign1;
static int shift(int a, int b)
static av_always_inline SoftFloat autocorr_calc(int64_t accu)
static void sbr_autocorrelate_c(const int x[40][2], SoftFloat phi[3][2][2])
Macro definitions for various function/variable attributes.
static void sbr_hf_g_filt_c(int(*Y)[2], const int(*X_high)[40][2], const SoftFloat *g_filt, int m_max, intptr_t ixh)
static av_cold int end(AVCodecContext *avctx)
static SoftFloat sbr_sum_square_c(int(*x)[2], int n)
static double alpha(void *priv, double x, double y)
static av_always_inline void autocorrelate(const int x[40][2], SoftFloat phi[3][2][2], int lag)
static av_always_inline av_const double round(double x)
static void sbr_qmf_post_shuffle_c(int W[32][2], const int *z)
static av_always_inline void sbr_hf_apply_noise(int(*Y)[2], const SoftFloat *s_m, const SoftFloat *q_filt, int noise, int phi_sign0, int phi_sign1, int m_max)
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
AAC definitions and structures.
static int noise(AVBitStreamFilterContext *bsfc, AVCodecContext *avctx, const char *args, uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size, int keyframe)
static void sbr_neg_odd_64_c(int *x)
static void sbr_qmf_pre_shuffle_c(int *z)
static void sbr_qmf_deint_neg_c(int *v, const int *src)
static av_const SoftFloat av_int2sf(int v, int frac_bits)
Converts a mantisse and exponent to a SoftFloat.
static void sbr_hf_gen_c(int(*X_high)[2], const int(*X_low)[2], const int alpha0[2], const int alpha1[2], int bw, int start, int end)