mirror of
https://github.com/androidx/media.git
synced 2025-04-30 06:46:50 +08:00
Add asset list loading methods to HlsInterstitialsAdsLoader.Listener
PiperOrigin-RevId: 738346245
This commit is contained in:
parent
71ff9c661c
commit
b0bca83811
@ -32,6 +32,7 @@ import androidx.media3.common.AdPlaybackState;
|
|||||||
import androidx.media3.common.AdViewProvider;
|
import androidx.media3.common.AdViewProvider;
|
||||||
import androidx.media3.common.C;
|
import androidx.media3.common.C;
|
||||||
import androidx.media3.common.MediaItem;
|
import androidx.media3.common.MediaItem;
|
||||||
|
import androidx.media3.common.MediaItem.AdsConfiguration;
|
||||||
import androidx.media3.common.MediaItem.LocalConfiguration;
|
import androidx.media3.common.MediaItem.LocalConfiguration;
|
||||||
import androidx.media3.common.Metadata;
|
import androidx.media3.common.Metadata;
|
||||||
import androidx.media3.common.MimeTypes;
|
import androidx.media3.common.MimeTypes;
|
||||||
@ -295,7 +296,7 @@ public final class HlsInterstitialsAdsLoader implements AdsLoader {
|
|||||||
* Called when the ads loader was started for the given HLS media item and ads ID.
|
* Called when the ads loader was started for the given HLS media item and ads ID.
|
||||||
*
|
*
|
||||||
* @param mediaItem The {@link MediaItem} of the content media source.
|
* @param mediaItem The {@link MediaItem} of the content media source.
|
||||||
* @param adsId The ads ID of the ads media source.
|
* @param adsId The ads identifier (see {@link AdsConfiguration#adsId}).
|
||||||
* @param adViewProvider {@linkplain AdViewProvider Provider} of views for the ad UI.
|
* @param adViewProvider {@linkplain AdViewProvider Provider} of views for the ad UI.
|
||||||
*/
|
*/
|
||||||
default void onStart(MediaItem mediaItem, Object adsId, AdViewProvider adViewProvider) {
|
default void onStart(MediaItem mediaItem, Object adsId, AdViewProvider adViewProvider) {
|
||||||
@ -307,7 +308,7 @@ public final class HlsInterstitialsAdsLoader implements AdsLoader {
|
|||||||
* the content source can be accessed through {@link Window#manifest}.
|
* the content source can be accessed through {@link Window#manifest}.
|
||||||
*
|
*
|
||||||
* @param mediaItem The {@link MediaItem} of the content media source.
|
* @param mediaItem The {@link MediaItem} of the content media source.
|
||||||
* @param adsId The ads ID of the ads media source.
|
* @param adsId The ads identifier (see {@link AdsConfiguration#adsId}).
|
||||||
* @param hlsContentTimeline The latest {@link Timeline}.
|
* @param hlsContentTimeline The latest {@link Timeline}.
|
||||||
*/
|
*/
|
||||||
default void onContentTimelineChanged(
|
default void onContentTimelineChanged(
|
||||||
@ -315,11 +316,65 @@ public final class HlsInterstitialsAdsLoader implements AdsLoader {
|
|||||||
// Do nothing.
|
// Do nothing.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when the asset list has been started to load for the given ad.
|
||||||
|
*
|
||||||
|
* @param mediaItem The {@link MediaItem} with which the {@linkplain MediaSource content media
|
||||||
|
* source} was created.
|
||||||
|
* @param adsId The ads identifier (see {@link AdsConfiguration#adsId}).
|
||||||
|
* @param adGroupIndex The index of the ad group of the ad period.
|
||||||
|
* @param adIndexInAdGroup The index of the ad in the ad group of the ad period.
|
||||||
|
*/
|
||||||
|
default void onAssetListLoadStarted(
|
||||||
|
MediaItem mediaItem, Object adsId, int adGroupIndex, int adIndexInAdGroup) {
|
||||||
|
// Do nothing.
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when an asset list has completed to load for the given ad.
|
||||||
|
*
|
||||||
|
* @param mediaItem The {@link MediaItem} with which the {@linkplain MediaSource content media
|
||||||
|
* source} was created.
|
||||||
|
* @param adsId The ads identifier (see {@link AdsConfiguration#adsId}).
|
||||||
|
* @param adGroupIndex The index of the ad group of the ad period.
|
||||||
|
* @param adIndexInAdGroup The index of the ad in the ad group of the ad period.
|
||||||
|
* @param assetList The {@link AssetList} for which loading has completed.
|
||||||
|
*/
|
||||||
|
default void onAssetListLoadCompleted(
|
||||||
|
MediaItem mediaItem,
|
||||||
|
Object adsId,
|
||||||
|
int adGroupIndex,
|
||||||
|
int adIndexInAdGroup,
|
||||||
|
AssetList assetList) {
|
||||||
|
// Do nothing.
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when an asset list has failed to load for the given ad.
|
||||||
|
*
|
||||||
|
* @param mediaItem The {@link MediaItem} with which the {@linkplain MediaSource content media
|
||||||
|
* source} was created.
|
||||||
|
* @param adsId The ads identifier (see {@link AdsConfiguration#adsId}).
|
||||||
|
* @param adGroupIndex The index of the ad group of the ad period.
|
||||||
|
* @param adIndexInAdGroup The index of the ad in the ad group of the ad period.
|
||||||
|
* @param ioException The exception, may be null if cancelled.
|
||||||
|
* @param cancelled Whether the load was cancelled.
|
||||||
|
*/
|
||||||
|
default void onAssetListLoadFailed(
|
||||||
|
MediaItem mediaItem,
|
||||||
|
Object adsId,
|
||||||
|
int adGroupIndex,
|
||||||
|
int adIndexInAdGroup,
|
||||||
|
@Nullable IOException ioException,
|
||||||
|
boolean cancelled) {
|
||||||
|
// Do nothing.
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called when preparation of an ad period has completed successfully.
|
* Called when preparation of an ad period has completed successfully.
|
||||||
*
|
*
|
||||||
* @param mediaItem The {@link MediaItem} of the content media source.
|
* @param mediaItem The {@link MediaItem} of the content media source.
|
||||||
* @param adsId The ads ID of the ads media source.
|
* @param adsId The ads identifier (see {@link AdsConfiguration#adsId}).
|
||||||
* @param adGroupIndex The index of the ad group in the ad media source.
|
* @param adGroupIndex The index of the ad group in the ad media source.
|
||||||
* @param adIndexInAdGroup The index of the ad in the ad group.
|
* @param adIndexInAdGroup The index of the ad in the ad group.
|
||||||
*/
|
*/
|
||||||
@ -332,7 +387,7 @@ public final class HlsInterstitialsAdsLoader implements AdsLoader {
|
|||||||
* Called when preparation of an ad period failed.
|
* Called when preparation of an ad period failed.
|
||||||
*
|
*
|
||||||
* @param mediaItem The {@link MediaItem} of the content media source.
|
* @param mediaItem The {@link MediaItem} of the content media source.
|
||||||
* @param adsId The ads ID of the ads media source.
|
* @param adsId The ads identifier (see {@link AdsConfiguration#adsId}).
|
||||||
* @param adGroupIndex The index of the ad group in the ad media source.
|
* @param adGroupIndex The index of the ad group in the ad media source.
|
||||||
* @param adIndexInAdGroup The index of the ad in the ad group.
|
* @param adIndexInAdGroup The index of the ad in the ad group.
|
||||||
* @param exception The {@link IOException} thrown when preparing.
|
* @param exception The {@link IOException} thrown when preparing.
|
||||||
@ -351,7 +406,7 @@ public final class HlsInterstitialsAdsLoader implements AdsLoader {
|
|||||||
* media item.
|
* media item.
|
||||||
*
|
*
|
||||||
* @param mediaItem The {@link MediaItem} of the content media source.
|
* @param mediaItem The {@link MediaItem} of the content media source.
|
||||||
* @param adsId The ads ID of the ads media source.
|
* @param adsId The ads identifier (see {@link AdsConfiguration#adsId}).
|
||||||
* @param adGroupIndex The index of the ad group in the ad media source.
|
* @param adGroupIndex The index of the ad group in the ad media source.
|
||||||
* @param adIndexInAdGroup The index of the ad in the ad group.
|
* @param adIndexInAdGroup The index of the ad in the ad group.
|
||||||
* @param metadata The emitted {@link Metadata}.
|
* @param metadata The emitted {@link Metadata}.
|
||||||
@ -370,7 +425,7 @@ public final class HlsInterstitialsAdsLoader implements AdsLoader {
|
|||||||
* content period, or the playlist ended.
|
* content period, or the playlist ended.
|
||||||
*
|
*
|
||||||
* @param mediaItem The {@link MediaItem} of the content media source.
|
* @param mediaItem The {@link MediaItem} of the content media source.
|
||||||
* @param adsId The ads ID of the ads media source.
|
* @param adsId The ads identifier (see {@link AdsConfiguration#adsId}).
|
||||||
* @param adGroupIndex The index of the ad group in the ad media source.
|
* @param adGroupIndex The index of the ad group in the ad media source.
|
||||||
* @param adIndexInAdGroup The index of the ad in the ad group.
|
* @param adIndexInAdGroup The index of the ad in the ad group.
|
||||||
*/
|
*/
|
||||||
@ -383,7 +438,7 @@ public final class HlsInterstitialsAdsLoader implements AdsLoader {
|
|||||||
* Called when the ads loader was stopped for the given HLS media item.
|
* Called when the ads loader was stopped for the given HLS media item.
|
||||||
*
|
*
|
||||||
* @param mediaItem The {@link MediaItem} of the content media source.
|
* @param mediaItem The {@link MediaItem} of the content media source.
|
||||||
* @param adsId The ads ID of the ads media source.
|
* @param adsId The ads identifier (see {@link AdsConfiguration#adsId}).
|
||||||
* @param adPlaybackState The {@link AdPlaybackState} after the ad media source was released.
|
* @param adPlaybackState The {@link AdPlaybackState} after the ad media source was released.
|
||||||
*/
|
*/
|
||||||
default void onStop(MediaItem mediaItem, Object adsId, AdPlaybackState adPlaybackState) {
|
default void onStop(MediaItem mediaItem, Object adsId, AdPlaybackState adPlaybackState) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user