-
- All Implemented Interfaces:
-
java.io.Serializable,java.lang.Comparable
public enum TrackStatusRepresents the status of a given track inside the transcoding operation.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABSENTTrack was absent in the source.
REMOVINGWe are removing the track in the output.
PASS_THROUGHWe are not touching the track.
COMPRESSINGWe are compressing the track in the output.
-
Method Summary
Modifier and Type Method Description booleanisTranscoding()This is used to understand whether we should select this trackin MediaExtractor, and add this track to MediaMuxer.Basically if it should be read and written or not(no point in just reading without writing). static Array<TrackStatus>values()static TrackStatusvalueOf(String name)-
-
Method Detail
-
isTranscoding
boolean isTranscoding()
This is used to understand whether we should select this trackin MediaExtractor, and add this track to MediaMuxer.Basically if it should be read and written or not(no point in just reading without writing).
-
values
static Array<TrackStatus> values()
-
valueOf
static TrackStatus valueOf(String name)
-
-
-
-