Bump to 2.6.0
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=174467964
This commit is contained in:
parent
4630fa2b4c
commit
b5b87d6a27
@ -1,5 +1,55 @@
|
||||
# Release notes #
|
||||
|
||||
### r2.6.0 ###
|
||||
|
||||
* New `Player.DefaultEventListener` abstract class can be extended to avoid
|
||||
having to implement all methods defined by `Player.EventListener`.
|
||||
* Added a reason to `EventListener.onPositionDiscontinuity`
|
||||
([#3252](https://github.com/google/ExoPlayer/issues/3252)).
|
||||
* New `setShuffleModeEnabled` method for enabling shuffled playback.
|
||||
* Support for `Renderer`s that don't consume any media
|
||||
([#3212](https://github.com/google/ExoPlayer/issues/3212)).
|
||||
* Fix potential `IndexOutOfBoundsException` when calling `ExoPlayer.getDuration`
|
||||
([#3362](https://github.com/google/ExoPlayer/issues/3362)).
|
||||
* Fix playbacks involving looping, concatenation and ads getting stuck when
|
||||
media contains tracks with uneven durations
|
||||
([#1874](https://github.com/google/ExoPlayer/issues/1874)).
|
||||
* Better playback experience when the video decoder cannot keep up, by skipping
|
||||
to key-frames. This is particularly relevant for variable speed playbacks.
|
||||
* SimpleExoPlayer: Support for multiple video, text and metadata outputs.
|
||||
* Audio: New `AudioSink` interface allows customization of audio output path.
|
||||
* Offline: Added `Downloader` implementations for DASH, HLS, SmoothStreaming
|
||||
and progressive streams.
|
||||
* Track selection:
|
||||
* Fixed adaptive track selection logic for live playbacks
|
||||
([#3017](https://github.com/google/ExoPlayer/issues/3017)).
|
||||
* Added ability to select the lowest bitrate tracks.
|
||||
* HLS:
|
||||
* Support for Widevine protected FMP4 variants.
|
||||
* DRM:
|
||||
* Improved compatibility with ClearKey content
|
||||
([#3138](https://github.com/google/ExoPlayer/issues/3138)).
|
||||
* Support multiple PSSH boxes of the same type.
|
||||
* Retry initial provisioning and key requests if they fail
|
||||
* Fix incorrect parsing of non-CENC sinf boxes.
|
||||
* IMA extension:
|
||||
* Expose `AdsLoader` via getter
|
||||
([#3322](https://github.com/google/ExoPlayer/issues/3322)).
|
||||
* Handle `setPlayWhenReady` calls during ad playbacks
|
||||
([#3303](https://github.com/google/ExoPlayer/issues/3303)).
|
||||
* Ignore seeks if an ad is playing
|
||||
([#3309](https://github.com/google/ExoPlayer/issues/3309)).
|
||||
* UI:
|
||||
* Allow specifying a `Drawable` for the `TimeBar` scrubber
|
||||
([#3337](https://github.com/google/ExoPlayer/issues/3337)).
|
||||
* Allow multiple listeners on `TimeBar`
|
||||
([#3406](https://github.com/google/ExoPlayer/issues/3406)).
|
||||
* New Leanback extension: Simplifies binding Exoplayer to Leanback UI
|
||||
components.
|
||||
* New Cast extension: Simplifies toggling between local and Cast playbacks.
|
||||
* Unit tests moved to Robolectric.
|
||||
* Misc bugfixes.
|
||||
|
||||
### r2.5.4 ###
|
||||
|
||||
* Remove unnecessary media playlist fetches during playback of live HLS streams.
|
||||
|
@ -28,7 +28,7 @@ project.ext {
|
||||
junitVersion = '4.12'
|
||||
truthVersion = '0.35'
|
||||
robolectricVersion = '3.4.2'
|
||||
releaseVersion = 'r2.5.4'
|
||||
releaseVersion = 'r2.6.0'
|
||||
modulePrefix = ':'
|
||||
if (gradle.ext.has('exoplayerModulePrefix')) {
|
||||
modulePrefix += gradle.ext.exoplayerModulePrefix
|
||||
|
@ -15,8 +15,8 @@
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.google.android.exoplayer2.castdemo"
|
||||
android:versionCode="2504"
|
||||
android:versionName="2.5.4">
|
||||
android:versionCode="2600"
|
||||
android:versionName="2.6.0">
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="26"/>
|
||||
|
@ -15,8 +15,8 @@
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.google.android.exoplayer2.imademo"
|
||||
android:versionCode="2504"
|
||||
android:versionName="2.5.4">
|
||||
android:versionCode="2600"
|
||||
android:versionName="2.6.0">
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="26"/>
|
||||
|
@ -16,8 +16,8 @@
|
||||
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.google.android.exoplayer2.demo"
|
||||
android:versionCode="2504"
|
||||
android:versionName="2.5.4">
|
||||
android:versionCode="2600"
|
||||
android:versionName="2.6.0">
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
||||
|
@ -31,13 +31,13 @@ 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.5.4";
|
||||
public static final String VERSION = "2.6.0";
|
||||
|
||||
/**
|
||||
* 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.5.4";
|
||||
public static final String VERSION_SLASHY = "ExoPlayerLib/2.6.0";
|
||||
|
||||
/**
|
||||
* The version of the library expressed as an integer, for example 1002003.
|
||||
@ -47,7 +47,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 = 2005004;
|
||||
public static final int VERSION_INT = 2006000;
|
||||
|
||||
/**
|
||||
* Whether the library was compiled with {@link com.google.android.exoplayer2.util.Assertions}
|
||||
|
Loading…
x
Reference in New Issue
Block a user