mirror of
https://github.com/samsonjs/media.git
synced 2026-04-15 12:55:46 +00:00
Bump version to 2.7.1 and update release notes
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=188514063
This commit is contained in:
parent
bdc5b5624d
commit
f9b70c2374
3 changed files with 14 additions and 18 deletions
|
|
@ -4,11 +4,11 @@
|
|||
|
||||
* Gradle: Replaced 'compile' (deprecated) with 'implementation' and
|
||||
'api'. This may lead to build breakage for applications upgrading from
|
||||
previous version that rely on indirect dependencies of certain modules. In such
|
||||
cases, application developers need to add the missing dependency to their
|
||||
gradle file. You can read more about the new dependency configurations
|
||||
previous version that rely on indirect dependencies of certain modules. In
|
||||
such cases, application developers need to add the missing dependency to
|
||||
their gradle file. You can read more about the new dependency configurations
|
||||
[here](https://developer.android.com/studio/build/gradle-plugin-3-0-0-migration.html#new_configurations).
|
||||
* HlsMediaSource: make HLS periods start at zero instead of the epoch.
|
||||
* HlsMediaSource: Make HLS periods start at zero instead of the epoch.
|
||||
Applications that rely on HLS timelines having a period starting at
|
||||
the epoch will need to update their handling of HLS timelines. The program
|
||||
date time is still available via the informational
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
[#3888](https://github.com/google/ExoPlayer/issues/3888)).
|
||||
* Enable seeking in MP4 streams where duration is set incorrectly in the track
|
||||
header ([#3926](https://github.com/google/ExoPlayer/issues/3926)).
|
||||
* Video: force rendering a frame periodically in `MediaCodecVideoRenderer` and
|
||||
* Video: Force rendering a frame periodically in `MediaCodecVideoRenderer` and
|
||||
`LibvpxVideoRenderer`, even if it is late.
|
||||
|
||||
### 2.7.0 ###
|
||||
|
|
|
|||
|
|
@ -13,8 +13,8 @@
|
|||
// limitations under the License.
|
||||
project.ext {
|
||||
// ExoPlayer version and version code.
|
||||
releaseVersion = '2.7.0'
|
||||
releaseVersionCode = 2700
|
||||
releaseVersion = '2.7.1'
|
||||
releaseVersionCode = 2701
|
||||
// Important: ExoPlayer specifies a minSdkVersion of 14 because various
|
||||
// components provided by the library may be of use on older devices.
|
||||
// However, please note that the core media playback functionality provided
|
||||
|
|
|
|||
|
|
@ -27,27 +27,23 @@ public final class ExoPlayerLibraryInfo {
|
|||
*/
|
||||
public static final String TAG = "ExoPlayer";
|
||||
|
||||
/**
|
||||
* The version of the library expressed as a string, for example "1.2.3".
|
||||
*/
|
||||
/** 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.7.0";
|
||||
public static final String VERSION = "2.7.1";
|
||||
|
||||
/**
|
||||
* The version of the library expressed as {@code "ExoPlayerLib/" + VERSION}.
|
||||
*/
|
||||
/** 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.7.0";
|
||||
public static final String VERSION_SLASHY = "ExoPlayerLib/2.7.1";
|
||||
|
||||
/**
|
||||
* The version of the library expressed as an integer, for example 1002003.
|
||||
* <p>
|
||||
* Three digits are used for each component of {@link #VERSION}. For example "1.2.3" has the
|
||||
*
|
||||
* <p>Three digits are used for each component of {@link #VERSION}. For example "1.2.3" has the
|
||||
* corresponding integer version 1002003 (001-002-003), and "123.45.6" has the corresponding
|
||||
* 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 = 2007000;
|
||||
public static final int VERSION_INT = 2007001;
|
||||
|
||||
/**
|
||||
* Whether the library was compiled with {@link com.google.android.exoplayer2.util.Assertions}
|
||||
|
|
|
|||
Loading…
Reference in a new issue