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
This commit is contained in:
Martin Storsjo 2016-08-30 09:54:44 +03:00
parent 00fc1c66d5
commit ebb66ffd4a

View File

@ -1939,7 +1939,7 @@ INT sbrEncoder_Init(
if ( (aot==AOT_PS) ) { if ( aot==AOT_PS ) {
usePs = 1; usePs = 1;
} }
if ( aot==AOT_ER_AAC_ELD ) { if ( aot==AOT_ER_AAC_ELD ) {