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
168d0cc9
authored
Oct 04, 2021
by
bachinger
Browse files
Options
_('Browse Files')
Download
Plain Diff
Merge pull request #9525 from talklittle:fix-initial-position
PiperOrigin-RevId: 400666736
parents
014ee8f5
e883c040
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
RELEASENOTES.md
library/ui/src/main/java/com/google/android/exoplayer2/ui/PlayerControlView.java
RELEASENOTES.md
View file @
168d0cc9
...
@@ -33,6 +33,8 @@
...
@@ -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.
...
...
library/ui/src/main/java/com/google/android/exoplayer2/ui/PlayerControlView.java
View file @
168d0cc9
...
@@ -508,6 +508,9 @@ public class PlayerControlView extends FrameLayout {
...
@@ -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
;
}
}
/**
/**
...
...
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