mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +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;
|
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;
|
||||||
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 =
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue