diff options
| author | Jean-Michel Trivi <jmtrivi@google.com> | 2016-09-09 22:06:10 +0000 |
|---|---|---|
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-09-09 22:06:10 +0000 |
| commit | f935254cc960ff906ae571566098a9df70014747 (patch) | |
| tree | e49a84688a0d329fef067b864f07dce58f1e4f96 | |
| parent | 00fc1c66d5a524c6961db04d05e1076b18003231 (diff) | |
| parent | ebb66ffd4ab69646c40c0e464c63c0fe428bcb3d (diff) | |
| download | fdk-aac-f935254cc960ff906ae571566098a9df70014747.tar.gz fdk-aac-f935254cc960ff906ae571566098a9df70014747.tar.bz2 fdk-aac-f935254cc960ff906ae571566098a9df70014747.zip | |
Merge "Avoid a warning about extra parentheses"
| -rw-r--r-- | libSBRenc/src/sbr_encoder.cpp | 2 |
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 ) { |
