mirror of
https://github.com/mstorsjo/fdk-aac.git
synced 2025-06-05 22:39:13 +02:00
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:
@@ -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 ) {
|
||||||
|
Reference in New Issue
Block a user