Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump media3 from 1.4.1 to 1.5.1 #3397

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 30, 2024

Bumps media3 from 1.4.1 to 1.5.1.
Updates androidx.media3:media3-cast from 1.4.1 to 1.5.1

Release notes

Sourced from androidx.media3:media3-cast's releases.

1.5.1

This release includes the following changes since the 1.5.0 release:

  • ExoPlayer:
    • Disable use of asynchronous decryption in MediaCodec to avoid reported codec timeout issues with this platform API (#1641).
  • Extractors:
    • MP3: Don't stop playback early when a VBRI frame's table of contents doesn't cover all the MP3 data in a file (#1904).
  • Video:
    • Rollback of using MediaCodecAdapter supplied pixel aspect ratio values when provided while processing onOutputFormatChanged (#1371).
  • Text:
    • Fix bug in ReplacingCuesResolver.discardCuesBeforeTimeUs where the cue active at timeUs (started before but not yet ended) was incorrectly discarded (#1939).
  • Metadata:
    • Extract disc/track numbering and genre from Vorbis comments into MediaMetadata (#1958).

1.5.0

This release includes the following changes since the 1.4.1 release:

  • Common Library:
    • Add ForwardingSimpleBasePlayer that allows forwarding to another player with small adjustments while ensuring full consistency and listener handling (#1183).
    • Replace SimpleBasePlayer.State.playlist by getPlaylist() method.
    • Add override for SimpleBasePlayer.State.Builder.setPlaylist() to directly specify a Timeline and current Tracks and Metadata instead of building a playlist structure.
    • Increase minSdk to 21 (Android Lollipop). This is aligned with all other AndroidX libraries.
    • Add androidx.media3:media3-common-ktx artifact which provides Kotlin-specific functionality built on top of the Common library
    • Add Player.listen suspending extension function to spin a coroutine to listen to Player.Events to the media3-common-ktx library.
    • Remove @DoNotInline annotations from manually out-of-lined inner classes designed to avoid runtime class verification failures. Recent versions of R8 now automatically out-of-line calls like these to avoid the runtime failures (so the manual out-of-lining is no longer required). All Gradle users of the library must already be a using a version of the Android Gradle Plugin that uses a version of R8 which does this, due to compileSdk = 35. Users of the library with non-Gradle build systems will need to ensure their R8-equivalent shrinking/obfuscating step does a similar automatic out-of-lining process in order to avoid runtime class verification failures. This change has already been done in other AndroidX libraries.
  • ExoPlayer:
    • MediaCodecRenderer.onProcessedStreamChange() can now be called for every media item. Previously it was not called for the first one. Use MediaCodecRenderer.experimentalEnableProcessedStreamChangedAtStart() to enable this.
    • Add PreloadMediaSource.PreloadControl.onPreloadError to allow PreloadMediaSource.PreloadControl implementations to take actions when error occurs.
    • Add BasePreloadManager.Listener to propagate preload events to apps.
    • Allow changing SNTP client timeout and retry alternative addresses on timeout (#1540).
    • Remove MediaCodecAdapter.Configuration.flags as the field was always zero.
    • Allow the user to select the built-in speaker for playback on Wear OS API 35+ (where the device advertises support for this).
    • Defer the blocking call to Context.getSystemService(Context.AUDIO_SERVICE) until audio focus handling is enabled. This ensures the blocking call isn't done if audio focus handling is not enabled (#1616).
    • Allow playback regardless of buffered duration when loading fails (#1571).
    • Add AnalyticsListener.onRendererReadyChanged() to signal when individual renderers allow playback to be ready.
    • Fix MediaCodec.CryptoException sometimes being reported as an "unexpected runtime error" when MediaCodec is operated in asynchronous mode (default behaviour on API 31+).
    • Pass bufferedDurationUs instead of bufferedPositionUs with PreloadMediaSource.PreloadControl.onContinueLoadingRequested(). Also changes DefaultPreloadManager.Status.STAGE_LOADED_TO_POSITION_MS to DefaultPreloadManager.Status.STAGE_LOADED_FOR_DURATION_MS, apps then need to pass a value representing a specific duration from the default start position for which the corresponding media source has to be preloaded with this IntDef, instead of a position.
    • Add ForwardingRenderer implementation that forwards all method calls to another renderer (1703).
    • Add playlist preloading for the next item in the playlist. Apps can enable preloading by calling ExoPlayer.setPreloadConfiguration(PreloadConfiguration) accordingly. By default preloading is disabled. When opted-in and to not interfere with playback, DefaultLoadControl restricts preloading to start and continue only when the player is not loading for playback. Apps can change this behaviour by implementing LoadControl.shouldContinuePreloading() accordingly (like when overriding this method in DefaultLoadControl). The default implementation of LoadControl disables preloading in case an app is using a custom implementation of LoadControl.
    • Add method MediaSourceEventListener.EventDispatcher.dispatchEvent() to allow invoking events of subclass listeners (1736).
    • Add DefaultPreloadManager.Builder that builds the DefaultPreloadManager and ExoPlayer instances with consistently shared configurations.
    • Remove Renderer[] parameter from LoadControl.onTracksSelected() as DefaultLoadControl implementation can retrieve the stream types from ExoTrackSelection[].
    • Deprecated DefaultLoadControl.calculateTargetBufferBytes(Renderer[], ExoTrackSelection[]) and marked method as final to prevent overrides. The new DefaultLoadControl.calculateTargetBufferBytes(ExoTrackSelection[]) should be used instead.
    • Report MediaSourceEventListener events from secondary sources in MergingMediaSource. This will result in load start/error/cancelled/completed events being reported for sideloaded subtitles (those added with MediaItem.LocalConfiguration.subtitleConfigurations), which may appear as duplicate load events emitted from AnalyticsListener.
    • Prevent subtitle & metadata errors from completely stopping playback. Instead the problematic track is disabled and playback of the remaining tracks continues (#1722).
      • In new subtitle handling (during extraction), associated parse (e.g. invalid subtitle data) and load errors (e.g. HTTP 404) are emitted via onLoadError callbacks.
      • In legacy subtitle handling (during rendering), only associated load errors are emitted via onLoadError callbacks while parse errors are silently ignored (this is pre-existing behaviour).
    • Fix bug where playlist items or periods in multi-period DASH streams with durations that don't match the actual content could cause frame freezes at the end of the item (#1698).
    • Add a setter to SntpClient to set the max elapsed time since the last update after which the client is re-initialized (#1794).
  • Transformer:

... (truncated)

Changelog

Sourced from androidx.media3:media3-cast's changelog.

1.5.1 (2024-12-19)

This release includes the following changes since the 1.5.0 release:

  • ExoPlayer:
    • Disable use of asynchronous decryption in MediaCodec to avoid reported codec timeout issues with this platform API (#1641).
  • Extractors:
    • MP3: Don't stop playback early when a VBRI frame's table of contents doesn't cover all the MP3 data in a file (#1904).
  • Video:
    • Rollback of using MediaCodecAdapter supplied pixel aspect ratio values when provided while processing onOutputFormatChanged (#1371).
  • Text:
    • Fix bug in ReplacingCuesResolver.discardCuesBeforeTimeUs where the cue active at timeUs (started before but not yet ended) was incorrectly discarded (#1939).
  • Metadata:
    • Extract disc/track numbering and genre from Vorbis comments into MediaMetadata (#1958).

1.5.0 (2024-11-27)

This release includes the following changes since the 1.4.1 release:

  • Common Library:
    • Add ForwardingSimpleBasePlayer that allows forwarding to another player with small adjustments while ensuring full consistency and listener handling (#1183).
    • Replace SimpleBasePlayer.State.playlist by getPlaylist() method.
    • Add override for SimpleBasePlayer.State.Builder.setPlaylist() to directly specify a Timeline and current Tracks and Metadata instead of building a playlist structure.
    • Increase minSdk to 21 (Android Lollipop). This is aligned with all other AndroidX libraries.
    • Add androidx.media3:media3-common-ktx artifact which provides Kotlin-specific functionality built on top of the Common library
    • Add Player.listen suspending extension function to spin a coroutine to listen to Player.Events to the media3-common-ktx library.
    • Remove @DoNotInline annotations from manually out-of-lined inner classes designed to avoid runtime class verification failures. Recent versions of R8

... (truncated)

Commits
  • 76088cd Bump Media3 version to 1.5.1
  • 7ae9ddf Update release notes for Media3 1.5.1 release
  • e4e59cd Switch default of async crypto mode to disabled
  • 508a425 Switch play FGS exemption to use custom action instead of commands
  • 52f9761 Don't check codec's profile for MV-HEVC video.
  • de91ebc Add vorbis comment support for track/disc numbering fields, and genre
  • 5d9badc Fix ReplacingCuesResolver.discardCuesBeforeTimeUs to retain active cue
  • 121b79a Merge pull request #1943 from DolbyLaboratories:dlb/ac4-ajoc/dev
  • fa9689e Clarify CommandButton javadoc around iconResId and ICON_UNDEFINED
  • f5bbb39 Merge pull request #1823 from MGaetan89:remove_outdated_sdk_check
  • Additional commits viewable in compare view

Updates androidx.media3:media3-common from 1.4.1 to 1.5.1

Release notes

Sourced from androidx.media3:media3-common's releases.

1.5.1

This release includes the following changes since the 1.5.0 release:

  • ExoPlayer:
    • Disable use of asynchronous decryption in MediaCodec to avoid reported codec timeout issues with this platform API (#1641).
  • Extractors:
    • MP3: Don't stop playback early when a VBRI frame's table of contents doesn't cover all the MP3 data in a file (#1904).
  • Video:
    • Rollback of using MediaCodecAdapter supplied pixel aspect ratio values when provided while processing onOutputFormatChanged (#1371).
  • Text:
    • Fix bug in ReplacingCuesResolver.discardCuesBeforeTimeUs where the cue active at timeUs (started before but not yet ended) was incorrectly discarded (#1939).
  • Metadata:
    • Extract disc/track numbering and genre from Vorbis comments into MediaMetadata (#1958).

1.5.0

This release includes the following changes since the 1.4.1 release:

  • Common Library:
    • Add ForwardingSimpleBasePlayer that allows forwarding to another player with small adjustments while ensuring full consistency and listener handling (#1183).
    • Replace SimpleBasePlayer.State.playlist by getPlaylist() method.
    • Add override for SimpleBasePlayer.State.Builder.setPlaylist() to directly specify a Timeline and current Tracks and Metadata instead of building a playlist structure.
    • Increase minSdk to 21 (Android Lollipop). This is aligned with all other AndroidX libraries.
    • Add androidx.media3:media3-common-ktx artifact which provides Kotlin-specific functionality built on top of the Common library
    • Add Player.listen suspending extension function to spin a coroutine to listen to Player.Events to the media3-common-ktx library.
    • Remove @DoNotInline annotations from manually out-of-lined inner classes designed to avoid runtime class verification failures. Recent versions of R8 now automatically out-of-line calls like these to avoid the runtime failures (so the manual out-of-lining is no longer required). All Gradle users of the library must already be a using a version of the Android Gradle Plugin that uses a version of R8 which does this, due to compileSdk = 35. Users of the library with non-Gradle build systems will need to ensure their R8-equivalent shrinking/obfuscating step does a similar automatic out-of-lining process in order to avoid runtime class verification failures. This change has already been done in other AndroidX libraries.
  • ExoPlayer:
    • MediaCodecRenderer.onProcessedStreamChange() can now be called for every media item. Previously it was not called for the first one. Use MediaCodecRenderer.experimentalEnableProcessedStreamChangedAtStart() to enable this.
    • Add PreloadMediaSource.PreloadControl.onPreloadError to allow PreloadMediaSource.PreloadControl implementations to take actions when error occurs.
    • Add BasePreloadManager.Listener to propagate preload events to apps.
    • Allow changing SNTP client timeout and retry alternative addresses on timeout (#1540).
    • Remove MediaCodecAdapter.Configuration.flags as the field was always zero.
    • Allow the user to select the built-in speaker for playback on Wear OS API 35+ (where the device advertises support for this).
    • Defer the blocking call to Context.getSystemService(Context.AUDIO_SERVICE) until audio focus handling is enabled. This ensures the blocking call isn't done if audio focus handling is not enabled (#1616).
    • Allow playback regardless of buffered duration when loading fails (#1571).
    • Add AnalyticsListener.onRendererReadyChanged() to signal when individual renderers allow playback to be ready.
    • Fix MediaCodec.CryptoException sometimes being reported as an "unexpected runtime error" when MediaCodec is operated in asynchronous mode (default behaviour on API 31+).
    • Pass bufferedDurationUs instead of bufferedPositionUs with PreloadMediaSource.PreloadControl.onContinueLoadingRequested(). Also changes DefaultPreloadManager.Status.STAGE_LOADED_TO_POSITION_MS to DefaultPreloadManager.Status.STAGE_LOADED_FOR_DURATION_MS, apps then need to pass a value representing a specific duration from the default start position for which the corresponding media source has to be preloaded with this IntDef, instead of a position.
    • Add ForwardingRenderer implementation that forwards all method calls to another renderer (1703).
    • Add playlist preloading for the next item in the playlist. Apps can enable preloading by calling ExoPlayer.setPreloadConfiguration(PreloadConfiguration) accordingly. By default preloading is disabled. When opted-in and to not interfere with playback, DefaultLoadControl restricts preloading to start and continue only when the player is not loading for playback. Apps can change this behaviour by implementing LoadControl.shouldContinuePreloading() accordingly (like when overriding this method in DefaultLoadControl). The default implementation of LoadControl disables preloading in case an app is using a custom implementation of LoadControl.
    • Add method MediaSourceEventListener.EventDispatcher.dispatchEvent() to allow invoking events of subclass listeners (1736).
    • Add DefaultPreloadManager.Builder that builds the DefaultPreloadManager and ExoPlayer instances with consistently shared configurations.
    • Remove Renderer[] parameter from LoadControl.onTracksSelected() as DefaultLoadControl implementation can retrieve the stream types from ExoTrackSelection[].
    • Deprecated DefaultLoadControl.calculateTargetBufferBytes(Renderer[], ExoTrackSelection[]) and marked method as final to prevent overrides. The new DefaultLoadControl.calculateTargetBufferBytes(ExoTrackSelection[]) should be used instead.
    • Report MediaSourceEventListener events from secondary sources in MergingMediaSource. This will result in load start/error/cancelled/completed events being reported for sideloaded subtitles (those added with MediaItem.LocalConfiguration.subtitleConfigurations), which may appear as duplicate load events emitted from AnalyticsListener.
    • Prevent subtitle & metadata errors from completely stopping playback. Instead the problematic track is disabled and playback of the remaining tracks continues (#1722).
      • In new subtitle handling (during extraction), associated parse (e.g. invalid subtitle data) and load errors (e.g. HTTP 404) are emitted via onLoadError callbacks.
      • In legacy subtitle handling (during rendering), only associated load errors are emitted via onLoadError callbacks while parse errors are silently ignored (this is pre-existing behaviour).
    • Fix bug where playlist items or periods in multi-period DASH streams with durations that don't match the actual content could cause frame freezes at the end of the item (#1698).
    • Add a setter to SntpClient to set the max elapsed time since the last update after which the client is re-initialized (#1794).
  • Transformer:

... (truncated)

Changelog

Sourced from androidx.media3:media3-common's changelog.

1.5.1 (2024-12-19)

This release includes the following changes since the 1.5.0 release:

  • ExoPlayer:
    • Disable use of asynchronous decryption in MediaCodec to avoid reported codec timeout issues with this platform API (#1641).
  • Extractors:
    • MP3: Don't stop playback early when a VBRI frame's table of contents doesn't cover all the MP3 data in a file (#1904).
  • Video:
    • Rollback of using MediaCodecAdapter supplied pixel aspect ratio values when provided while processing onOutputFormatChanged (#1371).
  • Text:
    • Fix bug in ReplacingCuesResolver.discardCuesBeforeTimeUs where the cue active at timeUs (started before but not yet ended) was incorrectly discarded (#1939).
  • Metadata:
    • Extract disc/track numbering and genre from Vorbis comments into MediaMetadata (#1958).

1.5.0 (2024-11-27)

This release includes the following changes since the 1.4.1 release:

  • Common Library:
    • Add ForwardingSimpleBasePlayer that allows forwarding to another player with small adjustments while ensuring full consistency and listener handling (#1183).
    • Replace SimpleBasePlayer.State.playlist by getPlaylist() method.
    • Add override for SimpleBasePlayer.State.Builder.setPlaylist() to directly specify a Timeline and current Tracks and Metadata instead of building a playlist structure.
    • Increase minSdk to 21 (Android Lollipop). This is aligned with all other AndroidX libraries.
    • Add androidx.media3:media3-common-ktx artifact which provides Kotlin-specific functionality built on top of the Common library
    • Add Player.listen suspending extension function to spin a coroutine to listen to Player.Events to the media3-common-ktx library.
    • Remove @DoNotInline annotations from manually out-of-lined inner classes designed to avoid runtime class verification failures. Recent versions of R8

... (truncated)

Commits
  • 76088cd Bump Media3 version to 1.5.1
  • 7ae9ddf Update release notes for Media3 1.5.1 release
  • e4e59cd Switch default of async crypto mode to disabled
  • 508a425 Switch play FGS exemption to use custom action instead of commands
  • 52f9761 Don't check codec's profile for MV-HEVC video.
  • de91ebc Add vorbis comment support for track/disc numbering fields, and genre
  • 5d9badc Fix ReplacingCuesResolver.discardCuesBeforeTimeUs to retain active cue
  • 121b79a Merge pull request #1943 from DolbyLaboratories:dlb/ac4-ajoc/dev
  • fa9689e Clarify CommandButton javadoc around iconResId and ICON_UNDEFINED
  • f5bbb39 Merge pull request #1823 from MGaetan89:remove_outdated_sdk_check
  • Additional commits viewable in compare view

Updates androidx.media3:media3-datasource from 1.4.1 to 1.5.1

Release notes

Sourced from androidx.media3:media3-datasource's releases.

1.5.1

This release includes the following changes since the 1.5.0 release:

  • ExoPlayer:
    • Disable use of asynchronous decryption in MediaCodec to avoid reported codec timeout issues with this platform API (#1641).
  • Extractors:
    • MP3: Don't stop playback early when a VBRI frame's table of contents doesn't cover all the MP3 data in a file (#1904).
  • Video:
    • Rollback of using MediaCodecAdapter supplied pixel aspect ratio values when provided while processing onOutputFormatChanged (#1371).
  • Text:
    • Fix bug in ReplacingCuesResolver.discardCuesBeforeTimeUs where the cue active at timeUs (started before but not yet ended) was incorrectly discarded (#1939).
  • Metadata:
    • Extract disc/track numbering and genre from Vorbis comments into MediaMetadata (#1958).

1.5.0

This release includes the following changes since the 1.4.1 release:

  • Common Library:
    • Add ForwardingSimpleBasePlayer that allows forwarding to another player with small adjustments while ensuring full consistency and listener handling (#1183).
    • Replace SimpleBasePlayer.State.playlist by getPlaylist() method.
    • Add override for SimpleBasePlayer.State.Builder.setPlaylist() to directly specify a Timeline and current Tracks and Metadata instead of building a playlist structure.
    • Increase minSdk to 21 (Android Lollipop). This is aligned with all other AndroidX libraries.
    • Add androidx.media3:media3-common-ktx artifact which provides Kotlin-specific functionality built on top of the Common library
    • Add Player.listen suspending extension function to spin a coroutine to listen to Player.Events to the media3-common-ktx library.
    • Remove @DoNotInline annotations from manually out-of-lined inner classes designed to avoid runtime class verification failures. Recent versions of R8 now automatically out-of-line calls like these to avoid the runtime failures (so the manual out-of-lining is no longer required). All Gradle users of the library must already be a using a version of the Android Gradle Plugin that uses a version of R8 which does this, due to compileSdk = 35. Users of the library with non-Gradle build systems will need to ensure their R8-equivalent shrinking/obfuscating step does a similar automatic out-of-lining process in order to avoid runtime class verification failures. This change has already been done in other AndroidX libraries.
  • ExoPlayer:
    • MediaCodecRenderer.onProcessedStreamChange() can now be called for every media item. Previously it was not called for the first one. Use MediaCodecRenderer.experimentalEnableProcessedStreamChangedAtStart() to enable this.
    • Add PreloadMediaSource.PreloadControl.onPreloadError to allow PreloadMediaSource.PreloadControl implementations to take actions when error occurs.
    • Add BasePreloadManager.Listener to propagate preload events to apps.
    • Allow changing SNTP client timeout and retry alternative addresses on timeout (#1540).
    • Remove MediaCodecAdapter.Configuration.flags as the field was always zero.
    • Allow the user to select the built-in speaker for playback on Wear OS API 35+ (where the device advertises support for this).
    • Defer the blocking call to Context.getSystemService(Context.AUDIO_SERVICE) until audio focus handling is enabled. This ensures the blocking call isn't done if audio focus handling is not enabled (#1616).
    • Allow playback regardless of buffered duration when loading fails (#1571).
    • Add AnalyticsListener.onRendererReadyChanged() to signal when individual renderers allow playback to be ready.
    • Fix MediaCodec.CryptoException sometimes being reported as an "unexpected runtime error" when MediaCodec is operated in asynchronous mode (default behaviour on API 31+).
    • Pass bufferedDurationUs instead of bufferedPositionUs with PreloadMediaSource.PreloadControl.onContinueLoadingRequested(). Also changes DefaultPreloadManager.Status.STAGE_LOADED_TO_POSITION_MS to DefaultPreloadManager.Status.STAGE_LOADED_FOR_DURATION_MS, apps then need to pass a value representing a specific duration from the default start position for which the corresponding media source has to be preloaded with this IntDef, instead of a position.
    • Add ForwardingRenderer implementation that forwards all method calls to another renderer (1703).
    • Add playlist preloading for the next item in the playlist. Apps can enable preloading by calling ExoPlayer.setPreloadConfiguration(PreloadConfiguration) accordingly. By default preloading is disabled. When opted-in and to not interfere with playback, DefaultLoadControl restricts preloading to start and continue only when the player is not loading for playback. Apps can change this behaviour by implementing LoadControl.shouldContinuePreloading() accordingly (like when overriding this method in DefaultLoadControl). The default implementation of LoadControl disables preloading in case an app is using a custom implementation of LoadControl.
    • Add method MediaSourceEventListener.EventDispatcher.dispatchEvent() to allow invoking events of subclass listeners (1736).
    • Add DefaultPreloadManager.Builder that builds the DefaultPreloadManager and ExoPlayer instances with consistently shared configurations.
    • Remove Renderer[] parameter from LoadControl.onTracksSelected() as DefaultLoadControl implementation can retrieve the stream types from ExoTrackSelection[].
    • Deprecated DefaultLoadControl.calculateTargetBufferBytes(Renderer[], ExoTrackSelection[]) and marked method as final to prevent overrides. The new DefaultLoadControl.calculateTargetBufferBytes(ExoTrackSelection[]) should be used instead.
    • Report MediaSourceEventListener events from secondary sources in MergingMediaSource. This will result in load start/error/cancelled/completed events being reported for sideloaded subtitles (those added with MediaItem.LocalConfiguration.subtitleConfigurations), which may appear as duplicate load events emitted from AnalyticsListener.
    • Prevent subtitle & metadata errors from completely stopping playback. Instead the problematic track is disabled and playback of the remaining tracks continues (#1722).
      • In new subtitle handling (during extraction), associated parse (e.g. invalid subtitle data) and load errors (e.g. HTTP 404) are emitted via onLoadError callbacks.
      • In legacy subtitle handling (during rendering), only associated load errors are emitted via onLoadError callbacks while parse errors are silently ignored (this is pre-existing behaviour).
    • Fix bug where playlist items or periods in multi-period DASH streams with durations that don't match the actual content could cause frame freezes at the end of the item (#1698).
    • Add a setter to SntpClient to set the max elapsed time since the last update after which the client is re-initialized (#1794).
  • Transformer:

... (truncated)

Changelog

Sourced from androidx.media3:media3-datasource's changelog.

1.5.1 (2024-12-19)

This release includes the following changes since the 1.5.0 release:

  • ExoPlayer:
    • Disable use of asynchronous decryption in MediaCodec to avoid reported codec timeout issues with this platform API (#1641).
  • Extractors:
    • MP3: Don't stop playback early when a VBRI frame's table of contents doesn't cover all the MP3 data in a file (#1904).
  • Video:
    • Rollback of using MediaCodecAdapter supplied pixel aspect ratio values when provided while processing onOutputFormatChanged (#1371).
  • Text:
    • Fix bug in ReplacingCuesResolver.discardCuesBeforeTimeUs where the cue active at timeUs (started before but not yet ended) was incorrectly discarded (#1939).
  • Metadata:
    • Extract disc/track numbering and genre from Vorbis comments into MediaMetadata (#1958).

1.5.0 (2024-11-27)

This release includes the following changes since the 1.4.1 release:

  • Common Library:
    • Add ForwardingSimpleBasePlayer that allows forwarding to another player with small adjustments while ensuring full consistency and listener handling (#1183).
    • Replace SimpleBasePlayer.State.playlist by getPlaylist() method.
    • Add override for SimpleBasePlayer.State.Builder.setPlaylist() to directly specify a Timeline and current Tracks and Metadata instead of building a playlist structure.
    • Increase minSdk to 21 (Android Lollipop). This is aligned with all other AndroidX libraries.
    • Add androidx.media3:media3-common-ktx artifact which provides Kotlin-specific functionality built on top of the Common library
    • Add Player.listen suspending extension function to spin a coroutine to listen to Player.Events to the media3-common-ktx library.
    • Remove @DoNotInline annotations from manually out-of-lined inner classes designed to avoid runtime class verification failures. Recent versions of R8

... (truncated)

Commits
  • 76088cd Bump Media3 version to 1.5.1
  • 7ae9ddf Update release notes for Media3 1.5.1 release
  • e4e59cd Switch default of async crypto mode to disabled
  • 508a425 Switch play FGS exemption to use custom action instead of commands
  • 52f9761 Don't check codec's profile for MV-HEVC video.
  • de91ebc Add vorbis comment support for track/disc numbering fields, and genre
  • 5d9badc Fix ReplacingCuesResolver.discardCuesBeforeTimeUs to retain active cue
  • 121b79a Merge pull request #1943 from DolbyLaboratories:dlb/ac4-ajoc/dev
  • fa9689e Clarify CommandButton javadoc around iconResId and ICON_UNDEFINED
  • f5bbb39 Merge pull request #1823 from MGaetan89:remove_outdated_sdk_check
  • Additional commits viewable in compare view

Updates androidx.media3:media3-datasource-okhttp from 1.4.1 to 1.5.1

Release notes

Sourced from androidx.media3:media3-datasource-okhttp's releases.

1.5.1

This release includes the following changes since the 1.5.0 release:

  • ExoPlayer:
    • Disable use of asynchronous decryption in MediaCodec to avoid reported codec timeout issues with this platform API (#1641).
  • Extractors:
    • MP3: Don't stop playback early when a VBRI frame's table of contents doesn't cover all the MP3 data in a file (#1904).
  • Video:
    • Rollback of using MediaCodecAdapter supplied pixel aspect ratio values when provided while processing onOutputFormatChanged (#1371).
  • Text:
    • Fix bug in ReplacingCuesResolver.discardCuesBeforeTimeUs where the cue active at timeUs (started before but not yet ended) was incorrectly discarded (#1939).
  • Metadata:
    • Extract disc/track numbering and genre from Vorbis comments into MediaMetadata (#1958).

1.5.0

This release includes the following changes since the 1.4.1 release:

  • Common Library:
    • Add ForwardingSimpleBasePlayer that allows forwarding to another player with small adjustments while ensuring full consistency and listener handling (#1183).
    • Replace SimpleBasePlayer.State.playlist by getPlaylist() method.
    • Add override for SimpleBasePlayer.State.Builder.setPlaylist() to directly specify a Timeline and current Tracks and Metadata instead of building a playlist structure.
    • Increase minSdk to 21 (Android Lollipop). This is aligned with all other AndroidX libraries.
    • Add androidx.media3:media3-common-ktx artifact which provides Kotlin-specific functionality built on top of the Common library
    • Add Player.listen suspending extension function to spin a coroutine to listen to Player.Events to the media3-common-ktx library.
    • Remove @DoNotInline annotations from manually out-of-lined inner classes designed to avoid runtime class verification failures. Recent versions of R8 now automatically out-of-line calls like these to avoid the runtime failures (so the manual out-of-lining is no longer required). All Gradle users of the library must already be a using a version of the Android Gradle Plugin that uses a version of R8 which does this, due to compileSdk = 35. Users of the library with non-Gradle build systems will need to ensure their R8-equivalent shrinking/obfuscating step does a similar automatic out-of-lining process in order to avoid runtime class verification failures. This change has already been done in other AndroidX libraries.
  • ExoPlayer:
    • MediaCodecRenderer.onProcessedStreamChange() can now be called for every media item. Previously it was not called for the first one. Use MediaCodecRenderer.experimentalEnableProcessedStreamChangedAtStart() to enable this.
    • Add PreloadMediaSource.PreloadControl.onPreloadError to allow PreloadMediaSource.PreloadControl implementations to take actions when error occurs.
    • Add BasePreloadManager.Listener to propagate preload events to apps.
    • Allow changing SNTP client timeout and retry alternative addresses on timeout (#1540).
    • Remove MediaCodecAdapter.Configuration.flags as the field was always zero.
    • Allow the user to select the built-in speaker for playback on Wear OS API 35+ (where the device advertises support for this).
    • Defer the blocking call to Context.getSystemService(Context.AUDIO_SERVICE) until audio focus handling is enabled. This ensures the blocking call isn't done if audio focus handling is not enabled (#1616).
    • Allow playback regardless of buffered duration when loading fails (#1571).
    • Add AnalyticsListener.onRendererReadyChanged() to signal when individual renderers allow playback to be ready.
    • Fix MediaCodec.CryptoException sometimes being reported as an "unexpected runtime error" when MediaCodec is operated in asynchronous mode (default behaviour on API 31+).
    • Pass bufferedDurationUs instead of bufferedPositionUs with PreloadMediaSource.PreloadControl.onContinueLoadingRequested(). Also changes DefaultPreloadManager.Status.STAGE_LOADED_TO_POSITION_MS to DefaultPreloadManager.Status.STAGE_LOADED_FOR_DURATION_MS, apps then need to pass a value representing a specific duration from the default start position for which the corresponding media source has to be preloaded with this IntDef, instead of a position.
    • Add ForwardingRenderer implementation that forwards all method calls to another renderer (1703).
    • Add playlist preloading for the next item in the playlist. Apps can enable preloading by calling ExoPlayer.setPreloadConfiguration(PreloadConfiguration) accordingly. By default preloading is disabled. When opted-in and to not interfere with playback, DefaultLoadControl restricts preloading to start and continue only when the player is not loading for playback. Apps can change this behaviour by implementing LoadControl.shouldContinuePreloading() accordingly (like when overriding this method in DefaultLoadControl). The default implementation of LoadControl disables preloading in case an app is using a custom implementation of LoadControl.
    • Add method MediaSourceEventListener.EventDispatcher.dispatchEvent() to allow invoking events of subclass listeners (1736).
    • Add DefaultPreloadManager.Builder that builds the DefaultPreloadManager and ExoPlayer instances with consistently shared configurations.
    • Remove Renderer[] parameter from LoadControl.onTracksSelected() as DefaultLoadControl implementation can retrieve the stream types from ExoTrackSelection[].
    • Deprecated DefaultLoadControl.calculateTargetBufferBytes(Renderer[], ExoTrackSelection[]) and marked method as final to prevent overrides. The new DefaultLoadControl.calculateTargetBufferBytes(ExoTrackSelection[]) should be used instead.
    • Report MediaSourceEventListener events from secondary sources in MergingMediaSource. This will result in load start/error/cancelled/completed events being reported for sideloaded subtitles (those added with MediaItem.LocalConfiguration.subtitleConfigurations), which may appear as duplicate load events emitted from AnalyticsListener.
    • Prevent subtitle & metadata errors from completely stopping playback. Instead the problematic track is disabled and playback of the remaining tracks continues (#1722).
      • In new subtitle handling (during extraction), associated parse (e.g. invalid subtitle data) and load errors (e.g. HTTP 404) are emitted via onLoadError callbacks.
      • In legacy subtitle handling (during rendering), only associated load errors are emitted via onLoadError callbacks while parse errors are silently ignored (this is pre-existing behaviour).
    • Fix bug where playlist items or periods in multi-period DASH streams with durations that don't match the actual content could cause frame freezes at the end of the item (#1698).
    • Add a setter to SntpClient to set the max elapsed time since the last update after which the client is re-initialized (#1794).
  • Transformer:

... (truncated)

Changelog

Sourced from androidx.media3:media3-datasource-okhttp's changelog.

1.5.1 (2024-12-19)

This release includes the following changes since the 1.5.0 release:

  • ExoPlayer:
    • Disable use of asynchronous decryption in MediaCodec to avoid reported codec timeout issues with this platform API (#1641).
  • Extractors:
    • MP3: Don't stop playback early when a VBRI frame's table of contents doesn't cover all the MP3 data in a file (#1904).
  • Video:
    • Rollback of using MediaCodecAdapter supplied pixel aspect ratio values when provided while processing onOutputFormatChanged (#1371).
  • Text:
    • Fix bug in ReplacingCuesResolver.discardCuesBeforeTimeUs where the cue active at timeUs (started before but not yet ended) was incorrectly discarded (#1939).
  • Metadata:
    • Extract disc/track numbering and genre from Vorbis comments into MediaMetadata (#1958).

1.5.0 (2024-11-27)

This release includes the following changes since the 1.4.1 release:

  • Common Library:
    • Add ForwardingSimpleBasePlayer that allows forwarding to another player with small adjustments while ensuring full consistency and listener handling (#1183).
    • Replace SimpleBasePlayer.State.playlist by getPlaylist() method.
    • Add override for SimpleBasePlayer.State.Builder.setPlaylist() to directly specify a Timeline and current Tracks and Metadata instead of building a playlist structure.
    • Increase minSdk to 21 (Android Lollipop). This is aligned with all other AndroidX libraries.
    • Add androidx.media3:media3-common-ktx artifact which provides Kotlin-specific functionality built on top of the Common library
    • Add Player.listen suspending extension function to spin a coroutine to listen to Player.Events to the media3-common-ktx library.
    • Remove @DoNotInline annotations from manually out-of-lined inner classes designed to avoid runtime class verification failures. Recent versions of R8

... (truncated)

Commits
  • 76088cd Bump Media3 version to 1.5.1
  • 7ae9ddf Update release notes for Media3 1.5.1 release
  • e4e59cd Switch default of async crypto mode to disabled
  • 508a425 Switch play FGS exemption to use custom action instead of commands
  • 52f9761 Don't check codec's profile for MV-HEVC video.
  • de91ebc Add vorbis comment support for track/disc numbering fields, and genre
  • 5d9badc Fix ReplacingCuesResolver.discardCuesBeforeTimeUs to retain active cue
  • 121b79a Merge pull request #1943 from DolbyLaboratories:dlb/ac4-ajoc/dev
  • fa9689e Clarify CommandButton javadoc around iconResId and ICON_UNDEFINED
  • f5bbb39 Merge pull request #1823 from MGaetan89:remove_outdated_sdk_check
  • Additional commits viewable in compare view

Updates androidx.media3:media3-exoplayer from 1.4.1 to 1.5.1

Release notes

Sourced from androidx.media3:media3-exoplayer's releases.

1.5.1

This release includes the following changes since the 1.5.0 release:

  • ExoPlayer:
    • Disable use of asynchronous decryption in MediaCodec to avoid reported codec timeout issues with this platform API (#1641).
  • Extractors:
    • MP3: Don't stop playback early when a VBRI frame's table of contents doesn't cover all the MP3 data in a file (#1904).
  • Video:
    • Rollback of using MediaCodecAdapter supplied pixel aspect ratio values when provided while processing onOutputFormatChanged (#1371).
  • Text:
    • Fix bug in ReplacingCuesResolver.discardCuesBeforeTimeUs where the cue active at timeUs (started before but not yet ended) was incorrectly discarded (#1939).
  • Metadata:
    • Extract disc/track numbering and genre from Vorbis comments into MediaMetadata (#1958).

1.5.0

This release includes the following changes since the 1.4.1 release:

  • Common Library:
    • Add ForwardingSimpleBasePlayer that allows forwarding to another player with small adjustments while ensuring full consistency and listener handling (#1183).
    • Replace SimpleBasePlayer.State.playlist by getPlaylist() method.
    • Add override for SimpleBasePlayer.State.Builder.setPlaylist() to directly specify a Timeline and current Tracks and Metadata instead of building a playlist structure.
    • Increase minSdk to 21 (Android Lollipop). This is aligned with all other AndroidX libraries.
    • Add androidx.media3:media3-common-ktx artifact which provides Kotlin-specific functionality built on top of the Common library
    • Add Player.listen suspending extension function to spin a coroutine to listen to Player.Events to the media3-common-ktx library.
    • Remove @DoNotInline annotations from manually out-of-lined inner classes designed to avoid runtime class verification failures. Recent versions of R8 now automatically out-of-line calls like these to avoid the runtime failures (so the manual out-of-lining is no longer required). All Gradle users of the library must already be a using a version of the Android Gradle Plugin that uses a version of R8 which does this, due to compileSdk = 35. Users of the library with non-Gradle build systems will need to ensure their R8-equivalent shrinking/obfuscating step does a similar automatic out-of-lining process in order to avoid runtime class verification failures. This change has already been done in other AndroidX libraries.
  • ExoPlayer:
    • MediaCodecRenderer.onProcessedStreamChange() can now be called for every media item. Previously it was not called for the first one. Use MediaCodecRenderer.experimentalEnableProcessedStreamChangedAtStart() to enable this.
    • Add PreloadMediaSource.PreloadControl.onPreloadError to allow PreloadMediaSource.PreloadControl implementations to take actions when error occurs.
    • Add BasePreloadManager.Listener to propagate preload events to apps.
    • Allow changing SNTP client timeout and retry alternative addresses on timeout (#1540).
    • Remove MediaCodecAdapter.Configuration.flags as the field was always zero.
    • Allow the user to select the built-in speaker for pla...

      Description has been truncated

Bumps `media3` from 1.4.1 to 1.5.1.

Updates `androidx.media3:media3-cast` from 1.4.1 to 1.5.1
- [Release notes](https://github.com/androidx/media/releases)
- [Changelog](https://github.com/androidx/media/blob/release/RELEASENOTES.md)
- [Commits](androidx/media@1.4.1...1.5.1)

Updates `androidx.media3:media3-common` from 1.4.1 to 1.5.1
- [Release notes](https://github.com/androidx/media/releases)
- [Changelog](https://github.com/androidx/media/blob/release/RELEASENOTES.md)
- [Commits](androidx/media@1.4.1...1.5.1)

Updates `androidx.media3:media3-datasource` from 1.4.1 to 1.5.1
- [Release notes](https://github.com/androidx/media/releases)
- [Changelog](https://github.com/androidx/media/blob/release/RELEASENOTES.md)
- [Commits](androidx/media@1.4.1...1.5.1)

Updates `androidx.media3:media3-datasource-okhttp` from 1.4.1 to 1.5.1
- [Release notes](https://github.com/androidx/media/releases)
- [Changelog](https://github.com/androidx/media/blob/release/RELEASENOTES.md)
- [Commits](androidx/media@1.4.1...1.5.1)

Updates `androidx.media3:media3-exoplayer` from 1.4.1 to 1.5.1
- [Release notes](https://github.com/androidx/media/releases)
- [Changelog](https://github.com/androidx/media/blob/release/RELEASENOTES.md)
- [Commits](androidx/media@1.4.1...1.5.1)

Updates `androidx.media3:media3-exoplayer-hls` from 1.4.1 to 1.5.1
- [Release notes](https://github.com/androidx/media/releases)
- [Changelog](https://github.com/androidx/media/blob/release/RELEASENOTES.md)
- [Commits](androidx/media@1.4.1...1.5.1)

Updates `androidx.media3:media3-extractor` from 1.4.1 to 1.5.1
- [Release notes](https://github.com/androidx/media/releases)
- [Changelog](https://github.com/androidx/media/blob/release/RELEASENOTES.md)
- [Commits](androidx/media@1.4.1...1.5.1)

Updates `androidx.media3:media3-ui` from 1.4.1 to 1.5.1
- [Release notes](https://github.com/androidx/media/releases)
- [Changelog](https://github.com/androidx/media/blob/release/RELEASENOTES.md)
- [Commits](androidx/media@1.4.1...1.5.1)

---
updated-dependencies:
- dependency-name: androidx.media3:media3-cast
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: androidx.media3:media3-common
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: androidx.media3:media3-datasource
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: androidx.media3:media3-datasource-okhttp
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: androidx.media3:media3-exoplayer
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: androidx.media3:media3-exoplayer-hls
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: androidx.media3:media3-extractor
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: androidx.media3:media3-ui
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner December 30, 2024 06:45
@dependabot dependabot bot requested review from mebarbosa and removed request for a team December 30, 2024 06:45
@dependabot dependabot bot added [Area] Dependencies Pull requests that update a dependency file [Type] Tech Debt Involving upgrades or refactoring to maintain or enhance the codebase. labels Dec 30, 2024
@dangermattic
Copy link
Collaborator

1 Warning
⚠️ PR is not assigned to a milestone.

Generated by 🚫 Danger

@wpmobilebot
Copy link
Collaborator

🚧 Prototype builds will be available soon

@wpmobilebot
Copy link
Collaborator

Project dependencies changes

The following changes in project dependencies were detected (configuration releaseRuntimeClasspath):

list
Upgraded Dependencies
androidx.media3:media3-cast:1.5.1, (changed from 1.4.1)
androidx.media3:media3-common:1.5.1, (changed from 1.4.1)
androidx.media3:media3-container:1.5.1, (changed from 1.4.1)
androidx.media3:media3-database:1.5.1, (changed from 1.4.1)
androidx.media3:media3-datasource:1.5.1, (changed from 1.4.1)
androidx.media3:media3-datasource-okhttp:1.5.1, (changed from 1.4.1)
androidx.media3:media3-decoder:1.5.1, (changed from 1.4.1)
androidx.media3:media3-exoplayer:1.5.1, (changed from 1.4.1)
androidx.media3:media3-exoplayer-hls:1.5.1, (changed from 1.4.1)
androidx.media3:media3-extractor:1.5.1, (changed from 1.4.1)
androidx.media3:media3-ui:1.5.1, (changed from 1.4.1)
tree
-+--- androidx.media3:media3-extractor:1.4.1
-|    +--- androidx.annotation:annotation:1.3.0 -> 1.9.1 (*)
-|    +--- androidx.media3:media3-common:1.4.1
-|    |    +--- androidx.annotation:annotation:1.3.0 -> 1.9.1 (*)
-|    |    +--- com.google.guava:guava:33.0.0-android -> 33.3.1-android (*)
-|    |    +--- androidx.annotation:annotation-experimental:1.3.1 -> 1.4.1 (*)
-|    |    +--- androidx.media3:media3-cast:1.4.1 (c)
-|    |    +--- androidx.media3:media3-container:1.4.1 (c)
-|    |    +--- androidx.media3:media3-datasource:1.4.1 (c)
-|    |    +--- androidx.media3:media3-datasource-okhttp:1.4.1 (c)
-|    |    +--- androidx.media3:media3-decoder:1.4.1 (c)
-|    |    +--- androidx.media3:media3-exoplayer:1.4.1 (c)
-|    |    +--- androidx.media3:media3-exoplayer-hls:1.4.1 (c)
-|    |    +--- androidx.media3:media3-extractor:1.4.1 (c)
-|    |    +--- androidx.media3:media3-ui:1.4.1 (c)
-|    |    \--- androidx.media3:media3-database:1.4.1 (c)
-|    +--- androidx.media3:media3-container:1.4.1
-|    |    +--- androidx.annotation:annotation:1.3.0 -> 1.9.1 (*)
-|    |    \--- androidx.media3:media3-common:1.4.1 (*)
-|    \--- androidx.media3:media3-decoder:1.4.1
-|         +--- androidx.media3:media3-common:1.4.1 (*)
-|         \--- androidx.annotation:annotation:1.3.0 -> 1.9.1 (*)
++--- androidx.media3:media3-extractor:1.5.1
+|    +--- androidx.annotation:annotation:1.6.0 -> 1.9.1 (*)
+|    +--- androidx.media3:media3-common:1.5.1
+|    |    +--- androidx.annotation:annotation:1.6.0 -> 1.9.1 (*)
+|    |    +--- org.jetbrains.kotlin:kotlin-bom:1.8.0 -> 1.8.22 (*)
+|    |    +--- com.google.guava:guava:33.3.1-android (*)
+|    |    +--- androidx.annotation:annotation-experimental:1.3.1 -> 1.4.1 (*)
+|    |    +--- androidx.media3:media3-cast:1.5.1 (c)
+|    |    +--- androidx.media3:media3-container:1.5.1 (c)
+|    |    +--- androidx.media3:media3-database:1.5.1 (c)
+|    |    +--- androidx.media3:media3-datasource:1.5.1 (c)
+|    |    +--- androidx.media3:media3-datasource-okhttp:1.5.1 (c)
+|    |    +--- androidx.media3:media3-decoder:1.5.1 (c)
+|    |    +--- androidx.media3:media3-exoplayer:1.5.1 (c)
+|    |    +--- androidx.media3:media3-exoplayer-hls:1.5.1 (c)
+|    |    +--- androidx.media3:media3-extractor:1.5.1 (c)
+|    |    \--- androidx.media3:media3-ui:1.5.1 (c)
+|    +--- androidx.media3:media3-container:1.5.1
+|    |    +--- androidx.annotation:annotation:1.6.0 -> 1.9.1 (*)
+|    |    \--- androidx.media3:media3-common:1.5.1 (*)
+|    \--- androidx.media3:media3-decoder:1.5.1
+|         +--- androidx.media3:media3-common:1.5.1 (*)
+|         \--- androidx.annotation:annotation:1.6.0 -> 1.9.1 (*)
 +--- project :modules:features:account
 |    \--- project :modules:features:search
 |         +--- project :modules:services:analytics
 |         |    \--- project :modules:services:model
-|         |         \--- androidx.media3:media3-extractor:1.4.1 (*)
+|         |         \--- androidx.media3:media3-extractor:1.5.1 (*)
 |         +--- project :modules:services:repositories
-|         |    +--- androidx.media3:media3-datasource:1.4.1
-|         |    |    +--- androidx.media3:media3-common:1.4.1 (*)
-|         |    |    +--- androidx.media3:media3-database:1.4.1
-|         |    |    |    +--- androidx.media3:media3-common:1.4.1 (*)
-|         |    |    |    \--- androidx.annotation:annotation:1.3.0 -> 1.9.1 (*)
-|         |    |    +--- androidx.annotation:annotation:1.3.0 -> 1.9.1 (*)
-|         |    |    \--- androidx.exifinterface:exifinterface:1.3.6 -> 1.3.7 (*)
+|         |    +--- androidx.media3:media3-datasource:1.5.1
+|         |    |    +--- androidx.media3:media3-common:1.5.1 (*)
+|         |    |    +--- androidx.media3:media3-database:1.5.1
+|         |    |    |    +--- androidx.media3:media3-common:1.5.1 (*)
+|         |    |    |    \--- androidx.annotation:annotation:1.6.0 -> 1.9.1 (*)
+|         |    |    +--- androidx.annotation:annotation:1.6.0 -> 1.9.1 (*)
+|         |    |    \--- androidx.exifinterface:exifinterface:1.3.6 -> 1.3.7 (*)
-|         |    +--- androidx.media3:media3-exoplayer:1.4.1
-|         |    |    +--- androidx.annotation:annotation:1.3.0 -> 1.9.1 (*)
-|         |    |    +--- androidx.collection:collection:1.2.0 -> 1.4.4 (*)
-|         |    |    +--- androidx.core:core:1.8.0 -> 1.13.1 (*)
-|         |    |    +--- androidx.exifinterface:exifinterface:1.3.6 -> 1.3.7 (*)
-|         |    |    +--- androidx.media3:media3-common:1.4.1 (*)
-|         |    |    +--- androidx.media3:media3-container:1.4.1 (*)
-|         |    |    +--- androidx.media3:media3-datasource:1.4.1 (*)
-|         |    |    +--- androidx.media3:media3-decoder:1.4.1 (*)
-|         |    |    +--- androidx.media3:media3-extractor:1.4.1 (*)
-|         |    |    \--- androidx.media3:media3-database:1.4.1 (*)
+|         |    +--- androidx.media3:media3-exoplayer:1.5.1
+|         |    |    +--- androidx.annotation:annotation:1.6.0 -> 1.9.1 (*)
+|         |    |    +--- androidx.collection:collection:1.2.0 -> 1.4.4 (*)
+|         |    |    +--- androidx.core:core:1.8.0 -> 1.13.1 (*)
+|         |    |    +--- androidx.exifinterface:exifinterface:1.3.6 -> 1.3.7 (*)
+|         |    |    +--- androidx.media3:media3-common:1.5.1 (*)
+|         |    |    +--- androidx.media3:media3-container:1.5.1 (*)
+|         |    |    +--- androidx.media3:media3-datasource:1.5.1 (*)
+|         |    |    +--- androidx.media3:media3-decoder:1.5.1 (*)
+|         |    |    +--- androidx.media3:media3-extractor:1.5.1 (*)
+|         |    |    \--- androidx.media3:media3-database:1.5.1 (*)
-|         |    +--- androidx.media3:media3-extractor:1.4.1 (*)
+|         |    +--- androidx.media3:media3-extractor:1.5.1 (*)
-|         |    +--- androidx.media3:media3-datasource-okhttp:1.4.1
-|         |    |    +--- androidx.media3:media3-common:1.4.1 (*)
-|         |    |    +--- androidx.media3:media3-datasource:1.4.1 (*)
-|         |    |    +--- androidx.annotation:annotation:1.3.0 -> 1.9.1 (*)
-|         |    |    \--- com.squareup.okhttp3:okhttp:4.12.0 (*)
+|         |    +--- androidx.media3:media3-datasource-okhttp:1.5.1
+|         |    |    +--- androidx.media3:media3-common:1.5.1 (*)
+|         |    |    +--- androidx.media3:media3-datasource:1.5.1 (*)
+|         |    |    +--- androidx.annotation:annotation:1.6.0 -> 1.9.1 (*)
+|         |    |    \--- com.squareup.okhttp3:okhttp:4.12.0 (*)
-|         |    +--- androidx.media3:media3-exoplayer-hls:1.4.1
-|         |    |    +--- androidx.annotation:annotation:1.3.0 -> 1.9.1 (*)
-|         |    |    \--- androidx.media3:media3-exoplayer:1.4.1 (*)
+|         |    +--- androidx.media3:media3-exoplayer-hls:1.5.1
+|         |    |    +--- androidx.annotation:annotation:1.6.0 -> 1.9.1 (*)
+|         |    |    \--- androidx.media3:media3-exoplayer:1.5.1 (*)
-|         |    \--- androidx.media3:media3-ui:1.4.1
-|         |         +--- androidx.media3:media3-common:1.4.1 (*)
-|         |         +--- androidx.media:media:1.7.0 (*)
-|         |         +--- androidx.annotation:annotation:1.3.0 -> 1.9.1 (*)
-|         |         \--- androidx.recyclerview:recyclerview:1.3.0 -> 1.3.2 (*)
+|         |    \--- androidx.media3:media3-ui:1.5.1
+|         |         +--- androidx.media3:media3-common:1.5.1 (*)
+|         |         +--- androidx.media:media:1.7.0 (*)
+|         |         +--- androidx.annotation:annotation:1.6.0 -> 1.9.1 (*)
+|         |         \--- androidx.recyclerview:recyclerview:1.3.0 -> 1.3.2 (*)
 |         \--- project :modules:services:ui
-|              \--- androidx.media3:media3-cast:1.4.1
-|                   +--- androidx.annotation:annotation:1.3.0 -> 1.9.1 (*)
-|                   +--- androidx.media3:media3-common:1.4.1 (*)
-|                   \--- com.google.android.gms:play-services-cast-framework:21.3.0 -> 22.0.0 (*)
+|              \--- androidx.media3:media3-cast:1.5.1
+|                   +--- androidx.annotation:annotation:1.6.0 -> 1.9.1 (*)
+|                   +--- androidx.media3:media3-common:1.5.1 (*)
+|                   \--- com.google.android.gms:play-services-cast-framework:21.3.0 -> 22.0.0 (*)
 +--- project :modules:features:discover
 |    \--- project :modules:features:podcasts
 |         \--- project :modules:features:player
-|              +--- androidx.media3:media3-ui:1.4.1 (*)
+|              +--- androidx.media3:media3-ui:1.5.1 (*)
-|              +--- androidx.media3:media3-exoplayer:1.4.1 (*)
+|              +--- androidx.media3:media3-exoplayer:1.5.1 (*)
-|              +--- androidx.media3:media3-extractor:1.4.1 (*)
+|              +--- androidx.media3:media3-extractor:1.5.1 (*)
 |              \--- project :modules:features:reimagine
-|                   \--- androidx.media3:media3-exoplayer:1.4.1 (*)
+|                   \--- androidx.media3:media3-exoplayer:1.5.1 (*)
 \--- project :modules:features:profile
-     +--- androidx.media3:media3-exoplayer:1.4.1 (*)
+     +--- androidx.media3:media3-exoplayer:1.5.1 (*)
-     +--- androidx.media3:media3-datasource:1.4.1 (*)
+     +--- androidx.media3:media3-datasource:1.5.1 (*)
-     \--- androidx.media3:media3-extractor:1.4.1 (*)
+     \--- androidx.media3:media3-extractor:1.5.1 (*)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
[Area] Dependencies Pull requests that update a dependency file [Type] Tech Debt Involving upgrades or refactoring to maintain or enhance the codebase.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants