Commit 74371d60 authored by jbr's avatar jbr

10l: typing mistake in r18888


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18890 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ca201792
...@@ -183,7 +183,7 @@ void ff_eac3_decode_transform_coeffs_aht_ch(AC3DecodeContext *s, int ch) ...@@ -183,7 +183,7 @@ void ff_eac3_decode_transform_coeffs_aht_ch(AC3DecodeContext *s, int ch)
mant <<= (23 - (mbits - 1)); mant <<= (23 - (mbits - 1));
/* remap mantissa value to correct for asymmetric quantization */ /* remap mantissa value to correct for asymmetric quantization */
if (mant >= 0) if (mant >= 0)
b = 1 << (23 - (mbits - 1)); b = 1 << (23 - log_gain);
else else
b = ff_eac3_gaq_remap_2_4_b[hebap-8][log_gain-1] << 8; b = ff_eac3_gaq_remap_2_4_b[hebap-8][log_gain-1] << 8;
mant += (((ff_eac3_gaq_remap_2_4_a[hebap-8][log_gain-1] << 8) * (int64_t)mant) >> 23) + b; mant += (((ff_eac3_gaq_remap_2_4_a[hebap-8][log_gain-1] << 8) * (int64_t)mant) >> 23) + b;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment