mirror of
https://github.com/ittiam-systems/libxaac.git
synced 2026-07-10 22:35:20 +07:00
Merge "Fix for sub-oveflow in ixheaacd_tns_ar_filter_fixed_armv8"
This commit is contained in:
commit
6106e348c0
1 changed files with 1 additions and 1 deletions
|
|
@ -349,7 +349,7 @@ VOID ixheaacd_tns_ar_filter_fixed_armv8(WORD32 *spectrum, WORD32 size,
|
|||
}
|
||||
acc1 = (WORD32)(acc >> 32);
|
||||
|
||||
y = ixheaacd_sub32(y, ixheaacd_shl32_sat(acc1, 1));
|
||||
y = ixheaacd_sub32_sat(y, ixheaacd_shl32_sat(acc1, 1));
|
||||
state[0] = ixheaacd_shl32_sat(y, shift_value);
|
||||
|
||||
*spectrum = y >> scale_spec;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue