Home | History | Annotate | Download | only in aacdec

Lines Matching refs:multiplier

38               *(pCoefRight++) = (Int32) tempInt2 * multiplier;
46 scalefactor = Multiplier used to scale the data extracted from the left
167 multiplier = codebook AND 0x1;
169 multiplier = multiplier XOR ms_used;
171 multiplier = multiplier << 1;
173 multiplier = multiplier - 1;
175 multiplier = multiplier * intensity_factor[scalefactor & 0x3];
188 *(pCoefRight) = tempInt2 * multiplier;
302 Int multiplier;
307 * The sign of the intensity multiplier obeys the following table...
309 * codebook | ms_used | multiplier
318 * codebook | ms_used | multiplier
328 * Deriving the correct value for "multiplier" is illustrated
338 multiplier = (codebook & 0x1);
346 multiplier ^= ms_used;
354 multiplier <<= 1;
362 multiplier--;
364 multiplier *= intensity_factor[scalefactor & 0x3];
410 if (multiplier == 32767)
431 *(pCoefRight++) = fxp_mul32_by_16(tempInt2, multiplier) << 1;
432 *(pCoefRight++) = fxp_mul32_by_16(tempInt22, multiplier) << 1;