mirror of
https://github.com/samsonjs/media.git
synced 2026-04-16 13:05:46 +00:00
Minor change to extractor module to avoid formatting changes
PiperOrigin-RevId: 384730845
This commit is contained in:
parent
b9ac5a145f
commit
f60c080500
1 changed files with 2 additions and 1 deletions
|
|
@ -16,6 +16,7 @@
|
|||
package com.google.android.exoplayer2.extractor.mkv;
|
||||
|
||||
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.util.ParsableByteArray;
|
||||
import java.io.IOException;
|
||||
|
|
@ -38,7 +39,7 @@ import java.io.IOException;
|
|||
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 {
|
||||
long inputLength = input.getLength();
|
||||
int bytesToSearch =
|
||||
|
|
|
|||
Loading…
Reference in a new issue