Definition at line 80 of file imdct.hpp.
81{
85
86
87 for (k = nBfly; k > 0; k--) {
90
91 a0 =
x[-1]; c0 = *c; c++; b0 =
x[0]; c1 = *c; c++;
94
95 a0 =
x[-2]; c0 = *c; c++; b0 =
x[1]; c1 = *c; c++;
98
99 a0 =
x[-3]; c0 = *c; c++; b0 =
x[2]; c1 = *c; c++;
102
103 a0 =
x[-4]; c0 = *c; c++; b0 =
x[3]; c1 = *c; c++;
106
107 a0 =
x[-5]; c0 = *c; c++; b0 =
x[4]; c1 = *c; c++;
110
111 a0 =
x[-6]; c0 = *c; c++; b0 =
x[5]; c1 = *c; c++;
114
115 a0 =
x[-7]; c0 = *c; c++; b0 =
x[6]; c1 = *c; c++;
118
119 a0 =
x[-8]; c0 = *c; c++; b0 =
x[7]; c1 = *c; c++;
122 }
123}
__inline int32_t MULSHIFT32(int32_t x, int32_t y) FL_NOEXCEPT
Multiply together two 32-bit numbers and return the top 32-bits of the result.
References csa, FL_NOEXCEPT, MULSHIFT32(), and fl::x.
Referenced by IMDCT().