diff options
author | Glenn Kasten <gkasten@google.com> | 2016-04-06 08:53:36 -0700 |
---|---|---|
committer | Glenn Kasten <gkasten@google.com> | 2016-04-18 16:10:57 -0700 |
commit | 76b428d4b46d4917caea81c8e262ae0fd326863a (patch) | |
tree | 3c6a3b7657ccf8a34c79167142f209f5b3ecea93 /libSBRenc/src | |
parent | c203653dcb46c1fbee0cf8bd719427cbe7fa4f7f (diff) | |
download | fdk-aac-76b428d4b46d4917caea81c8e262ae0fd326863a.tar.gz fdk-aac-76b428d4b46d4917caea81c8e262ae0fd326863a.tar.bz2 fdk-aac-76b428d4b46d4917caea81c8e262ae0fd326863a.zip |
Remove redundant parentheses around == comparison operator
Bug: 28026175
Change-Id: I8ff9d8d1dd73933dc181f2745292a0a3398a2479
Diffstat (limited to 'libSBRenc/src')
-rw-r--r-- | libSBRenc/src/sbr_encoder.cpp | 4 |
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; } |