Interface ExtractorsFactory
-
- All Known Implementing Classes:
DefaultExtractorsFactory
@Deprecated public interface ExtractorsFactory
Deprecated.com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.Factory for arrays ofExtractor
instances.
-
-
Field Summary
Fields Modifier and Type Field Description static ExtractorsFactory
EMPTY
Deprecated.Extractor factory that returns an empty list of extractors.
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description Extractor[]
createExtractors()
Deprecated.Returns an array of newExtractor
instances.default Extractor[]
createExtractors(Uri uri, Map<String,List<String>> responseHeaders)
Deprecated.Returns an array of newExtractor
instances.
-
-
-
Field Detail
-
EMPTY
static final ExtractorsFactory EMPTY
Deprecated.Extractor factory that returns an empty list of extractors. Can be used wheneverExtractors
are not required.
-
-