Skip to content

Commit

Permalink
Miscellaneous fixes to FragmentedMp4Extractor
Browse files Browse the repository at this point in the history
ISSUE: #7308
PiperOrigin-RevId: 319747742
  • Loading branch information
kim-vde authored and icbaker committed Jul 6, 2020
1 parent 64a24e0 commit 3612874
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1565,7 +1565,7 @@ public void updateDrmInitData(DrmInitData drmInitData) {
output.format(format);
}

/** Resets the current fragment, sample indices and {@code isInFragment} boolean. */
/** Resets the current fragment, sample indices and {@link #currentlyInFragment} boolean. */
public void reset() {
fragment.reset();
currentSampleIndex = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@
*/
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;

Expand Down

0 comments on commit 3612874

Please sign in to comment.