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
3612874d
authored
Jul 06, 2020
by
kimvde
Committed by
Ian Baker
Jul 06, 2020
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Miscellaneous fixes to FragmentedMp4Extractor
ISSUE: #7308 PiperOrigin-RevId: 319747742
parent
64a24e08
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
RELEASENOTES.md
library/extractor/src/main/java/com/google/android/exoplayer2/extractor/mp4/FragmentedMp4Extractor.java
library/extractor/src/main/java/com/google/android/exoplayer2/extractor/mp4/TrackFragment.java
RELEASENOTES.md
View file @
3612874d
...
...
@@ -203,7 +203,8 @@
(
[
#6410
](
https://github.com/google/ExoPlayer/issues/6410
)
).
*
Select first extractors based on the filename extension and the response
headers mime type in
`DefaultExtractorsFactory`
.
*
Add support for partially fragmented MP4s.
*
Add support for partially fragmented MP4s
(
[
#7308
](
https://github.com/google/ExoPlayer/issues/7308
)
).
*
Testing
*
Add
`TestExoPlayer`
, a utility class with APIs to create
`SimpleExoPlayer`
instances with fake components for testing.
...
...
library/extractor/src/main/java/com/google/android/exoplayer2/extractor/mp4/FragmentedMp4Extractor.java
View file @
3612874d
...
...
@@ -1565,7 +1565,7 @@ public class FragmentedMp4Extractor implements Extractor {
output
.
format
(
format
);
}
/** Resets the current fragment, sample indices and {@
code is
InFragment} boolean. */
/** Resets the current fragment, sample indices and {@
link #currently
InFragment} boolean. */
public
void
reset
()
{
fragment
.
reset
();
currentSampleIndex
=
0
;
...
...
library/extractor/src/main/java/com/google/android/exoplayer2/extractor/mp4/TrackFragment.java
View file @
3612874d
...
...
@@ -89,8 +89,8 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
*/
public
boolean
sampleEncryptionDataNeedsFill
;
/**
* The
absolute decode time of the start of the next fragment, excluding the samples outside
*
fragments
.
* The
duration of all samples defined in fragments up to and including this one. Samples defined
*
in the moov box are not included
.
*/
public
long
nextFragmentDecodeTime
;
...
...
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