Commit 19d24ac6 by andrewlewis Committed by Oliver Woodman

Remove extra brackets

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=206725219
parent ded2b2eb
...@@ -1551,7 +1551,7 @@ public final class MatroskaExtractor implements Extractor { ...@@ -1551,7 +1551,7 @@ public final class MatroskaExtractor implements Extractor {
if (!foundSyncframe) { if (!foundSyncframe) {
input.peekFully(syncframePrefix, 0, Ac3Util.TRUEHD_SYNCFRAME_PREFIX_LENGTH); input.peekFully(syncframePrefix, 0, Ac3Util.TRUEHD_SYNCFRAME_PREFIX_LENGTH);
input.resetPeekPosition(); input.resetPeekPosition();
if ((Ac3Util.parseTrueHdSyncframeAudioSampleCount(syncframePrefix) == 0)) { if (Ac3Util.parseTrueHdSyncframeAudioSampleCount(syncframePrefix) == 0) {
return; return;
} }
foundSyncframe = true; foundSyncframe = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment