Skip to content

Commit 4ea72f0

Browse files
committed
Version bump to exoplayer:2.18.2 and media3:1.0.0-beta03
#minor-release PiperOrigin-RevId: 489959918
1 parent 2fd4aac commit 4ea72f0

File tree

4 files changed

+27
-18
lines changed

4 files changed

+27
-18
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ body:
1717
label: Media3 Version
1818
description: What version of Media3 are you using?
1919
options:
20+
- 1.0.0-beta03
2021
- 1.0.0-beta02
2122
- 1.0.0-beta01
2223
- 1.0.0-alpha03

RELEASENOTES.md

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@ Release notes
22

33
### Unreleased changes
44

5+
* Core library:
6+
* Add suppression reason for unsuitable audio route and play when ready
7+
change reason for suppressed too long.
8+
([#15](https://github.com/androidx/media/issues/15)).
9+
* Tweak the renderer's decoder ordering logic to uphold the
10+
`MediaCodecSelector`'s preferences, even if a decoder reports it may not
11+
be able to play the media performantly. For example with default
12+
selector, hardware decoder with only functional support will be
13+
preferred over software decoder that fully supports the format
14+
([#10604](https://github.com/google/ExoPlayer/issues/10604)).
15+
* Add `ExoPlayer.Builder.setPlaybackLooper` that sets a pre-existing
16+
playback thread for a new ExoPlayer instance.
17+
* Remove deprecated symbols:
18+
* Remove `DefaultAudioSink` constructors, use `DefaultAudioSink.Builder`
19+
instead.
20+
21+
### 1.0.0-beta03 (2022-11-22)
22+
23+
This release corresponds to the
24+
[ExoPlayer 2.18.2 release](https://github.com/google/ExoPlayer/releases/tag/r2.18.2).
25+
526
* Core library:
627
* Add `ExoPlayer.isTunnelingEnabled` to check if tunneling is enabled for
728
the currently selected tracks
@@ -16,9 +37,6 @@ Release notes
1637
* Close the Tracing "doSomeWork" block when offload is enabled.
1738
* Try alternative decoder for Dolby Vision if display does not support it.
1839
([#9794](https://github.com/google/ExoPlayer/issues/9794)).
19-
* Add suppression reason for unsuitable audio route and play when ready
20-
change reason for suppressed too long.
21-
([#15](https://github.com/androidx/media/issues/15)).
2240
* Prefer other tracks to Dolby Vision if display does not support it.
2341
([#8944](https://github.com/google/ExoPlayer/issues/8944)).
2442
* Fix session tracking problem with fast seeks in `PlaybackStatsListener`
@@ -30,17 +48,9 @@ Release notes
3048
([#10684](https://github.com/google/ExoPlayer/issues/10684)).
3149
* Add `Player.getSurfaceSize` that returns the size of the surface on
3250
which the video is rendered.
33-
* Tweak the renderer's decoder ordering logic to uphold the
34-
`MediaCodecSelector`'s preferences, even if a decoder reports it may not
35-
be able to play the media performantly. For example with default
36-
selector, hardware decoder with only functional support will be
37-
preferred over software decoder that fully supports the format
38-
([#10604](https://github.com/google/ExoPlayer/issues/10604)).
3951
* Fix bug where removing listeners during the player release can cause an
4052
`IllegalStateException`
4153
([#10758](https://github.com/google/ExoPlayer/issues/10758)).
42-
* Add `ExoPlayer.Builder.setPlaybackLooper` that sets a pre-existing
43-
playback thread for a new ExoPlayer instance.
4454
* Build:
4555
* Avoid publishing block when included in another gradle build.
4656
* Downloads:
@@ -145,8 +155,6 @@ Release notes
145155
* Add muxer watchdog timer to detect when generating an output sample is
146156
too slow.
147157
* Remove deprecated symbols:
148-
* Remove `DefaultAudioSink` constructors, use `DefaultAudioSink.Builder`
149-
instead.
150158
* Remove `Transformer.Builder.setOutputMimeType(String)`. This feature has
151159
been removed. The MIME type will always be MP4 when the default muxer is
152160
used.

constants.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414
project.ext {
15-
releaseVersion = '1.0.0-beta02'
16-
releaseVersionCode = 1_000_000_1_02
15+
releaseVersion = '1.0.0-beta03'
16+
releaseVersionCode = 1_000_000_1_03
1717
minSdkVersion = 16
1818
appTargetSdkVersion = 33
1919
// API version before restricting local file access.

libraries/common/src/main/java/androidx/media3/common/MediaLibraryInfo.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ public final class MediaLibraryInfo {
2929

3030
/** The version of the library expressed as a string, for example "1.2.3" or "1.2.3-beta01". */
3131
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION_INT) or vice versa.
32-
public static final String VERSION = "1.0.0-beta02";
32+
public static final String VERSION = "1.0.0-beta03";
3333

3434
/** The version of the library expressed as {@code TAG + "/" + VERSION}. */
3535
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
36-
public static final String VERSION_SLASHY = "AndroidXMedia3/1.0.0-beta02";
36+
public static final String VERSION_SLASHY = "AndroidXMedia3/1.0.0-beta03";
3737

3838
/**
3939
* The version of the library expressed as an integer, for example 1002003300.
@@ -47,7 +47,7 @@ public final class MediaLibraryInfo {
4747
* (123-045-006-3-00).
4848
*/
4949
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
50-
public static final int VERSION_INT = 1_000_000_1_02;
50+
public static final int VERSION_INT = 1_000_000_1_03;
5151

5252
/** Whether the library was compiled with {@link Assertions} checks enabled. */
5353
public static final boolean ASSERTIONS_ENABLED = true;

0 commit comments

Comments
 (0)