aboutsummaryrefslogtreecommitdiffstats
path: root/libSBRenc
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2016-04-20 19:00:06 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-04-20 19:00:06 +0000
commitad1e8985d954c289b1c5c0683ac92d5ec08c5e0d (patch)
tree3c6a3b7657ccf8a34c79167142f209f5b3ecea93 /libSBRenc
parentc203653dcb46c1fbee0cf8bd719427cbe7fa4f7f (diff)
parent34fb05353bbabe1ba04362f26b3ae507fbb687d4 (diff)
downloadfdk-aac-ad1e8985d954c289b1c5c0683ac92d5ec08c5e0d.tar.gz
fdk-aac-ad1e8985d954c289b1c5c0683ac92d5ec08c5e0d.tar.bz2
fdk-aac-ad1e8985d954c289b1c5c0683ac92d5ec08c5e0d.zip
Merge "Remove redundant parentheses around == comparison operator"
am: 34fb053 * commit '34fb05353bbabe1ba04362f26b3ae507fbb687d4': Remove redundant parentheses around == comparison operator Change-Id: I7a37ef8293371cc0287a0e0b9f0115f82f294b31
Diffstat (limited to 'libSBRenc')
-rw-r--r--libSBRenc/src/sbr_encoder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libSBRenc/src/sbr_encoder.cpp b/libSBRenc/src/sbr_encoder.cpp
index 464c013..abe9793 100644
--- a/libSBRenc/src/sbr_encoder.cpp
+++ b/libSBRenc/src/sbr_encoder.cpp
@@ -1851,10 +1851,10 @@ INT sbrEncoder_Init(
if ( (aot==AOT_PS) || (aot==AOT_MP2_PS) || (aot==AOT_DABPLUS_PS) || (aot==AOT_DRM_MPEG_PS) ) {
usePs = 1;
}
- if ( (aot==AOT_ER_AAC_ELD) ) {
+ if ( aot==AOT_ER_AAC_ELD ) {
lowDelay = 1;
}
- else if ( (aot==AOT_ER_AAC_LD) ) {
+ else if ( aot==AOT_ER_AAC_LD ) {
error = 1;
goto bail;
}