Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
f60c0805
authored
Jul 14, 2021
by
bachinger
Committed by
Oliver Woodman
Jul 14, 2021
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Minor change to extractor module to avoid formatting changes
PiperOrigin-RevId: 384730845
parent
b9ac5a14
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
library/extractor/src/main/java/com/google/android/exoplayer2/extractor/mkv/Sniffer.java
library/extractor/src/main/java/com/google/android/exoplayer2/extractor/mkv/Sniffer.java
View file @
f60c0805
...
@@ -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
=
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment