mirror of
https://github.com/samsonjs/media.git
synced 2026-03-31 10:25:48 +00:00
Bump version to 2.11.4
PiperOrigin-RevId: 303776645
This commit is contained in:
parent
fea0acd41a
commit
1f44a4db4b
3 changed files with 10 additions and 10 deletions
|
|
@ -1,10 +1,10 @@
|
|||
# Release notes #
|
||||
|
||||
### 2.11.4 (not yet released) ###
|
||||
### 2.11.4 (2020-04-01) ###
|
||||
|
||||
* Text:
|
||||
* Catch-and-log all fatal exceptions in `TextRenderer` instead of re-throwing,
|
||||
allowing playback to continue even if subtitles fail
|
||||
* Catch and log exceptions in `TextRenderer` rather than re-throwing. This
|
||||
allows playback to continue even if subtitle decoding fails
|
||||
([#6885](https://github.com/google/ExoPlayer/issues/6885)).
|
||||
* Allow missing hours and milliseconds in SubRip (.srt) timecodes
|
||||
([#7122](https://github.com/google/ExoPlayer/issues/7122)).
|
||||
|
|
@ -18,7 +18,7 @@
|
|||
([#7134](https://github.com/google/ExoPlayer/issues/7134)).
|
||||
* Fix failure to play WAV files that contain trailing non-media bytes
|
||||
([#7129](https://github.com/google/ExoPlayer/issues/7129))
|
||||
* DASH:
|
||||
* DASH:
|
||||
* Update the manifest URI to avoid repeated HTTP redirects
|
||||
([#6907](https://github.com/google/ExoPlayer/issues/6907)).
|
||||
* Parse period `AssetIdentifier` elements.
|
||||
|
|
@ -27,7 +27,7 @@
|
|||
([#6761](https://github.com/google/ExoPlayer/issues/6761)).
|
||||
* Analytics: Fix `PlaybackStatsListener` behavior when not keeping history
|
||||
([#7160](https://github.com/google/ExoPlayer/issues/7160)).
|
||||
* FFmpeg extension: Add support for x86_64.
|
||||
* FFmpeg extension: Add support for `x86_64` architecture.
|
||||
* Opus extension: Fix parsing of negative gain values
|
||||
([#7046](https://github.com/google/ExoPlayer/issues/7046)).
|
||||
|
||||
|
|
|
|||
|
|
@ -13,8 +13,8 @@
|
|||
// limitations under the License.
|
||||
project.ext {
|
||||
// ExoPlayer version and version code.
|
||||
releaseVersion = '2.11.3'
|
||||
releaseVersionCode = 2011003
|
||||
releaseVersion = '2.11.4'
|
||||
releaseVersionCode = 2011004
|
||||
minSdkVersion = 16
|
||||
appTargetSdkVersion = 29
|
||||
targetSdkVersion = 28 // TODO: Bump once b/143232359 is resolved
|
||||
|
|
|
|||
|
|
@ -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.11.3";
|
||||
public static final String VERSION = "2.11.4";
|
||||
|
||||
/** 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.11.3";
|
||||
public static final String VERSION_SLASHY = "ExoPlayerLib/2.11.4";
|
||||
|
||||
/**
|
||||
* 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 = 2011003;
|
||||
public static final int VERSION_INT = 2011004;
|
||||
|
||||
/**
|
||||
* Whether the library was compiled with {@link com.google.android.exoplayer2.util.Assertions}
|
||||
|
|
|
|||
Loading…
Reference in a new issue