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
65d9c110
authored
Jul 09, 2019
by
olly
Committed by
Oliver Woodman
Jul 09, 2019
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Bump version to 2.10.3
PiperOrigin-RevId: 257161518
parent
b3d258b6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
15 deletions
RELEASENOTES.md
constants.gradle
library/core/src/main/java/com/google/android/exoplayer2/ExoPlayerLibraryInfo.java
RELEASENOTES.md
View file @
65d9c110
...
...
@@ -6,27 +6,34 @@
and analytics reporting (TODO: link to developer guide page/blog post).
*
Add basic DRM support to the Cast demo app.
*
Offline: Add
`Scheduler`
implementation that uses
`WorkManager`
.
*
Display last frame when seeking to end of stream
(
[
#2568
](
https://github.com/google/ExoPlayer/issues/2568
)
).
*
Assume that encrypted content requires secure decoders in renderer support
checks (
[
#5568
](
https://github.com/google/ExoPlayer/issues/5568
)
).
*
Decoders: Prefer decoders that advertise format support over ones that do not,
even if they are listed lower in the
`MediaCodecList`
.
*
Audio:
*
Fix an issue where not all audio was played out when the configuration
for the underlying track was changing (e.g., at some period transitions).
*
Fix an issue where playback speed was applied inaccurately in playlists
(
[
#6117
](
https://github.com/google/ExoPlayer/issues/6117
)
).
*
Add a workaround for broken raw audio decoding on Oppo R9
(
[
#5782
](
https://github.com/google/ExoPlayer/issues/5782
)
).
*
Add VR player demo.
*
Wrap decoder exceptions in a new
`DecoderException`
class and report as
renderer error.
*
SmoothStreaming: Parse text stream
`Subtype`
into
`Format.roleFlags`
.
*
FLV: Fix bug that caused playback of some live streams to not start
(
[
#6111
](
https://github.com/google/ExoPlayer/issues/6111
)
).
### 2.10.3 ###
*
Display last frame when seeking to end of stream
(
[
#2568
](
https://github.com/google/ExoPlayer/issues/2568
)
).
*
Audio:
*
Fix an issue where not all audio was played out when the configuration
for the underlying track was changing (e.g., at some period transitions).
*
Fix an issue where playback speed was applied inaccurately in playlists
(
[
#6117
](
https://github.com/google/ExoPlayer/issues/6117
)
).
*
UI: Fix
`PlayerView`
incorrectly consuming touch events if no controller is
attached (
[
#6109
](
https://github.com/google/ExoPlayer/issues/6133
)
).
*
CEA608: Fix repetition of special North American characters
(
[
#6133
](
https://github.com/google/ExoPlayer/issues/6133
)
).
*
FLV: Fix bug that caused playback of some live streams to not start
(
[
#6111
](
https://github.com/google/ExoPlayer/issues/6111
)
).
*
SmoothStreaming: Parse text stream
`Subtype`
into
`Format.roleFlags`
.
*
MediaSession extension: Fix
`MediaSessionConnector.play()`
not resuming
playback (
[
#6093
](
https://github.com/google/ExoPlayer/issues/6093
)
).
### 2.10.2 ###
...
...
constants.gradle
View file @
65d9c110
...
...
@@ -13,8 +13,8 @@
// limitations under the License.
project
.
ext
{
// ExoPlayer version and version code.
releaseVersion
=
'2.10.
2
'
releaseVersionCode
=
201000
2
releaseVersion
=
'2.10.
3
'
releaseVersionCode
=
201000
3
minSdkVersion
=
16
targetSdkVersion
=
28
compileSdkVersion
=
28
...
...
library/core/src/main/java/com/google/android/exoplayer2/ExoPlayerLibraryInfo.java
View file @
65d9c110
...
...
@@ -29,11 +29,11 @@ public final class ExoPlayerLibraryInfo {
/** The version of the library expressed as a string, for example "1.2.3". */
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION_INT) or vice versa.
public
static
final
String
VERSION
=
"2.10.
2
"
;
public
static
final
String
VERSION
=
"2.10.
3
"
;
/** The version of the library expressed as {@code "ExoPlayerLib/" + VERSION}. */
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
public
static
final
String
VERSION_SLASHY
=
"ExoPlayerLib/2.10.
2
"
;
public
static
final
String
VERSION_SLASHY
=
"ExoPlayerLib/2.10.
3
"
;
/**
* The version of the library expressed as an integer, for example 1002003.
...
...
@@ -43,7 +43,7 @@ public final class ExoPlayerLibraryInfo {
* integer version 123045006 (123-045-006).
*/
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
public
static
final
int
VERSION_INT
=
201000
2
;
public
static
final
int
VERSION_INT
=
201000
3
;
/**
* Whether the library was compiled with {@link com.google.android.exoplayer2.util.Assertions}
...
...
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