Class ExportResult.ProcessedInput
- java.lang.Object
-
- com.google.android.exoplayer2.transformer.ExportResult.ProcessedInput
-
- Enclosing class:
- ExportResult
public static final class ExportResult.ProcessedInput extends Object
An input entirely or partially processed.
-
-
Field Summary
Fields Modifier and Type Field Description @MonotonicNonNull String
audioDecoderName
The name of the audio decoder used to processmediaItem
.MediaItem
mediaItem
The processedMediaItem
.@MonotonicNonNull String
videoDecoderName
The name of the video decoder used to processmediaItem
.
-
Constructor Summary
Constructors Constructor Description ProcessedInput(MediaItem mediaItem, String audioDecoderName, String videoDecoderName)
Creates an instance.
-
-
-
Field Detail
-
audioDecoderName
public final @MonotonicNonNull String audioDecoderName
The name of the audio decoder used to processmediaItem
. This field isnull
if no audio decoder was used.
-
videoDecoderName
public final @MonotonicNonNull String videoDecoderName
The name of the video decoder used to processmediaItem
. This field isnull
if no video decoder was used.
-
-