diff options
author | Glenn Kasten <gkasten@google.com> | 2016-04-20 23:59:17 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-04-20 23:59:17 +0000 |
commit | 450151173c60fb9481b9757b6049573cdc04aa08 (patch) | |
tree | 54f00c5c12777852b7dc3a7999e49e3c4bf5fc78 /libSBRenc/src | |
parent | 7342ab656882c2355518176bacb92410462780f9 (diff) | |
parent | 18a9bb8b6d6bebae0cf3bdb404a2f8c417cd17fc (diff) | |
download | fdk-aac-450151173c60fb9481b9757b6049573cdc04aa08.tar.gz fdk-aac-450151173c60fb9481b9757b6049573cdc04aa08.tar.bz2 fdk-aac-450151173c60fb9481b9757b6049573cdc04aa08.zip |
resolve merge conflicts of ad1e898 to nyc-dev-plus-aosp am: 2809968
am: 18a9bb8
* commit '18a9bb8b6d6bebae0cf3bdb404a2f8c417cd17fc':
Remove redundant parentheses around == comparison operator
Change-Id: If91ecced946588a7d6f48aab5a90e0e8503793b1
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 90b19cf..86a3f91 100644 --- a/libSBRenc/src/sbr_encoder.cpp +++ b/libSBRenc/src/sbr_encoder.cpp @@ -1942,10 +1942,10 @@ INT sbrEncoder_Init( if ( (aot==AOT_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; } |