aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2016-04-06 08:53:36 -0700
committerGlenn Kasten <gkasten@google.com>2016-08-16 14:06:20 -0700
commit2504f6043487ec9c4664efea0229c07c867a53f4 (patch)
treee49a84688a0d329fef067b864f07dce58f1e4f96
parent2a9da6a10b4d9c12e50aadf65b796820bb9b6b2c (diff)
downloadfdk-aac-2504f6043487ec9c4664efea0229c07c867a53f4.tar.gz
fdk-aac-2504f6043487ec9c4664efea0229c07c867a53f4.tar.bz2
fdk-aac-2504f6043487ec9c4664efea0229c07c867a53f4.zip
Remove redundant parentheses around == comparison operator
Bug: 28026175 Change-Id: I61be1ab98d7279d09250ea4b810c5f31886da048
-rw-r--r--libSBRenc/src/sbr_encoder.cpp2
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 ) {