diff options
author | Martin Storsjo <martin@martin.st> | 2016-08-30 09:54:44 +0300 |
---|---|---|
committer | Martin Storsjo <martin@martin.st> | 2016-08-30 09:57:04 +0300 |
commit | ebb66ffd4ab69646c40c0e464c63c0fe428bcb3d (patch) | |
tree | e49a84688a0d329fef067b864f07dce58f1e4f96 | |
parent | 00fc1c66d5a524c6961db04d05e1076b18003231 (diff) | |
download | fdk-aac-ebb66ffd4ab69646c40c0e464c63c0fe428bcb3d.tar.gz fdk-aac-ebb66ffd4ab69646c40c0e464c63c0fe428bcb3d.tar.bz2 fdk-aac-ebb66ffd4ab69646c40c0e464c63c0fe428bcb3d.zip |
Avoid a warning about extra parentheses
This fixes the following warning:
libSBRenc/src/sbr_encoder.cpp:1942:14: warning: equality comparison
with extraneous parentheses [-Wparentheses-equality]
Change-Id: I2c833d19348574473c752076a4efff6642c0d653
-rw-r--r-- | libSBRenc/src/sbr_encoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libSBRenc/src/sbr_encoder.cpp b/libSBRenc/src/sbr_encoder.cpp index 86a3f91..71aab78 100644 --- a/libSBRenc/src/sbr_encoder.cpp +++ b/libSBRenc/src/sbr_encoder.cpp @@ -1939,7 +1939,7 @@ INT sbrEncoder_Init( - if ( (aot==AOT_PS) ) { + if ( aot==AOT_PS ) { usePs = 1; } if ( aot==AOT_ER_AAC_ELD ) { |