Remove extra brackets

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=206725219
This commit is contained in:
andrewlewis 2018-07-31 02:05:04 -07:00 committed by Oliver Woodman
parent ded2b2eb2a
commit 19d24ac633

View File

@ -1551,7 +1551,7 @@ public final class MatroskaExtractor implements Extractor {
if (!foundSyncframe) {
input.peekFully(syncframePrefix, 0, Ac3Util.TRUEHD_SYNCFRAME_PREFIX_LENGTH);
input.resetPeekPosition();
if ((Ac3Util.parseTrueHdSyncframeAudioSampleCount(syncframePrefix) == 0)) {
if (Ac3Util.parseTrueHdSyncframeAudioSampleCount(syncframePrefix) == 0) {
return;
}
foundSyncframe = true;