Commit f60c0805 by bachinger Committed by Oliver Woodman

Minor change to extractor module to avoid formatting changes

PiperOrigin-RevId: 384730845
parent b9ac5a14
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
package com.google.android.exoplayer2.extractor.mkv; package com.google.android.exoplayer2.extractor.mkv;
import com.google.android.exoplayer2.C; import com.google.android.exoplayer2.C;
import com.google.android.exoplayer2.extractor.Extractor;
import com.google.android.exoplayer2.extractor.ExtractorInput; import com.google.android.exoplayer2.extractor.ExtractorInput;
import com.google.android.exoplayer2.util.ParsableByteArray; import com.google.android.exoplayer2.util.ParsableByteArray;
import java.io.IOException; import java.io.IOException;
...@@ -38,7 +39,7 @@ import java.io.IOException; ...@@ -38,7 +39,7 @@ import java.io.IOException;
scratch = new ParsableByteArray(8); scratch = new ParsableByteArray(8);
} }
/** @see com.google.android.exoplayer2.extractor.Extractor#sniff(ExtractorInput) */ /** See {@link Extractor#sniff(ExtractorInput)}. */
public boolean sniff(ExtractorInput input) throws IOException { public boolean sniff(ExtractorInput input) throws IOException {
long inputLength = input.getLength(); long inputLength = input.getLength();
int bytesToSearch = int bytesToSearch =
......
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