mirror of
https://github.com/androidx/media.git
synced 2025-05-15 19:49:50 +08:00
Merge pull request #9525 from talklittle:fix-initial-position
PiperOrigin-RevId: 400666736
This commit is contained in:
commit
168d0cc9a6
@ -33,6 +33,8 @@
|
|||||||
* `SubtitleView` no longer implements `TextOutput`. `SubtitleView`
|
* `SubtitleView` no longer implements `TextOutput`. `SubtitleView`
|
||||||
implements `Player.Listener`, so can be registered to a player with
|
implements `Player.Listener`, so can be registered to a player with
|
||||||
`Player.addListener`.
|
`Player.addListener`.
|
||||||
|
* Fix initial timestamp display in `PlayerControlView`
|
||||||
|
([#9524](https://github.com/google/ExoPlayer/issues/9254)).
|
||||||
* Extractors:
|
* Extractors:
|
||||||
* MP4: Correctly handle HEVC tracks with pixel aspect ratios other than 1.
|
* MP4: Correctly handle HEVC tracks with pixel aspect ratios other than 1.
|
||||||
* TS: Correctly handle HEVC tracks with pixel aspect ratios other than 1.
|
* TS: Correctly handle HEVC tracks with pixel aspect ratios other than 1.
|
||||||
|
@ -508,6 +508,9 @@ public class PlayerControlView extends FrameLayout {
|
|||||||
shuffleOnContentDescription = resources.getString(R.string.exo_controls_shuffle_on_description);
|
shuffleOnContentDescription = resources.getString(R.string.exo_controls_shuffle_on_description);
|
||||||
shuffleOffContentDescription =
|
shuffleOffContentDescription =
|
||||||
resources.getString(R.string.exo_controls_shuffle_off_description);
|
resources.getString(R.string.exo_controls_shuffle_off_description);
|
||||||
|
|
||||||
|
currentPosition = C.TIME_UNSET;
|
||||||
|
currentBufferedPosition = C.TIME_UNSET;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user