Class ImaServerSideAdInsertionMediaSource.Factory
- java.lang.Object
-
- com.google.android.exoplayer2.ext.ima.ImaServerSideAdInsertionMediaSource.Factory
-
- All Implemented Interfaces:
MediaSource.Factory
- Enclosing class:
- ImaServerSideAdInsertionMediaSource
public static final class ImaServerSideAdInsertionMediaSource.Factory extends Object implements MediaSource.Factory
Factory for creatingImaServerSideAdInsertionMediaSources.Apps can use the
ImaServerSideAdInsertionMediaSource.Factoryto customized theDefaultMediaSourceFactorythat is used to build a player:
-
-
Field Summary
-
Fields inherited from interface com.google.android.exoplayer2.source.MediaSource.Factory
UNSUPPORTED
-
-
Constructor Summary
Constructors Constructor Description Factory(ImaServerSideAdInsertionMediaSource.AdsLoader adsLoader, MediaSource.Factory contentMediaSourceFactory)Creates a new factory forImaServerSideAdInsertionMediaSources.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MediaSourcecreateMediaSource(MediaItem mediaItem)Creates a newMediaSourcewith the specifiedMediaItem.@com.google.android.exoplayer2.C.ContentType int[]getSupportedTypes()Returns thecontent typessupported by media sources created by this factory.MediaSource.FactorysetDrmSessionManagerProvider(DrmSessionManagerProvider drmSessionManagerProvider)MediaSource.FactorysetLoadErrorHandlingPolicy(LoadErrorHandlingPolicy loadErrorHandlingPolicy)Sets an optionalLoadErrorHandlingPolicy.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.google.android.exoplayer2.source.MediaSource.Factory
setCmcdConfigurationFactory
-
-
-
-
Constructor Detail
-
Factory
public Factory(ImaServerSideAdInsertionMediaSource.AdsLoader adsLoader, MediaSource.Factory contentMediaSourceFactory)
Creates a new factory forImaServerSideAdInsertionMediaSources.- Parameters:
adsLoader- TheImaServerSideAdInsertionMediaSource.AdsLoader.contentMediaSourceFactory- The content media source factory to create content sources.
-
-
Method Detail
-
setLoadErrorHandlingPolicy
@CanIgnoreReturnValue public MediaSource.Factory setLoadErrorHandlingPolicy(LoadErrorHandlingPolicy loadErrorHandlingPolicy)
Description copied from interface:MediaSource.FactorySets an optionalLoadErrorHandlingPolicy.- Specified by:
setLoadErrorHandlingPolicyin interfaceMediaSource.Factory- Returns:
- This factory, for convenience.
-
setDrmSessionManagerProvider
@CanIgnoreReturnValue public MediaSource.Factory setDrmSessionManagerProvider(DrmSessionManagerProvider drmSessionManagerProvider)
Description copied from interface:MediaSource.Factory- Specified by:
setDrmSessionManagerProviderin interfaceMediaSource.Factory- Returns:
- This factory, for convenience.
-
getSupportedTypes
@ContentType public @com.google.android.exoplayer2.C.ContentType int[] getSupportedTypes()
Description copied from interface:MediaSource.FactoryReturns thecontent typessupported by media sources created by this factory.- Specified by:
getSupportedTypesin interfaceMediaSource.Factory
-
createMediaSource
public MediaSource createMediaSource(MediaItem mediaItem)
Description copied from interface:MediaSource.FactoryCreates a newMediaSourcewith the specifiedMediaItem.- Specified by:
createMediaSourcein interfaceMediaSource.Factory- Parameters:
mediaItem- The media item to play.- Returns:
- The new
media source.
-
-