diff options
author | Martin Storsjo <martin@martin.st> | 2016-10-18 09:08:02 +0300 |
---|---|---|
committer | Martin Storsjo <martin@martin.st> | 2016-10-18 09:22:55 +0300 |
commit | 6ec082c6c32b6298d5995cc4fb405dee75e3a1e3 (patch) | |
tree | 6dc876100fa51e37b866094fdc242d03ccbf01ff /libSBRdec | |
parent | 4556cb9cb8b12574c41b749b20c1c149fed54a37 (diff) | |
download | fdk-aac-6ec082c6c32b6298d5995cc4fb405dee75e3a1e3.tar.gz fdk-aac-6ec082c6c32b6298d5995cc4fb405dee75e3a1e3.tar.bz2 fdk-aac-6ec082c6c32b6298d5995cc4fb405dee75e3a1e3.zip |
Remove redundant register storage class specifiers
Clang warns about this being deprecated, when building without specifying
-std=c++98.
This doesn't give any measurable encoding speed impact on ARM or AArch64,
on neither GCC nor Clang.
Change-Id: I63a0bbd1dccb97547522da188ee585d4d8127c29
Diffstat (limited to 'libSBRdec')
-rw-r--r-- | libSBRdec/src/env_calc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libSBRdec/src/env_calc.cpp b/libSBRdec/src/env_calc.cpp index fa5330a..73bd7ba 100644 --- a/libSBRdec/src/env_calc.cpp +++ b/libSBRdec/src/env_calc.cpp @@ -2031,7 +2031,7 @@ static void adjustTimeSlotHQ( FIXP_SGL direct_ratio = /*FL2FXCONST_SGL(1.0f) */ (FIXP_SGL)MAXVAL_SGL - smooth_ratio; int index = *ptrPhaseIndex; UCHAR harmIndex = *ptrHarmIndex; - register int freqInvFlag = (lowSubband & 1); + int freqInvFlag = (lowSubband & 1); FIXP_DBL sineLevel; int shift; |