Package org.codice.alliance.libs.mpegts
Enum Class MpegStreamType
- All Implemented Interfaces:
Serializable,Comparable<MpegStreamType>,Constable
These are the types of streams that may be contained in an MPEG-TS.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic MpegStreamTypelookup(int tag) Find the MpegStreamType based on the MPEG-TS stream tag number.static MpegStreamTypelookup(org.jcodec.containers.mps.MTSUtils.StreamType streamType) Find the MpegStreamType based on aMTSUtils.StreamType.static MpegStreamTypeReturns the enum constant of this class with the specified name.static MpegStreamType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
RESERVED
-
VIDEO_MPEG1
-
VIDEO_MPEG2
-
AUDIO_MPEG1
-
AUDIO_MPEG2
-
PRIVATE_SECTION
-
PRIVATE_DATA
-
MHEG
-
DSM_CC
-
ATM_SYNC
-
DSM_CC_A
-
DSM_CC_B
-
DSM_CC_C
-
DSM_CC_D
-
MPEG_AUX
-
AUDIO_AAC_ADTS
-
VIDEO_MPEG4
-
AUDIO_AAC_LATM
-
FLEXMUX_PES
-
FLEXMUX_SEC
-
DSM_CC_SDP
-
META_PES
-
META_SEC
-
DSM_CC_DATA_CAROUSEL
-
DSM_CC_OBJ_CAROUSEL
-
DSM_CC_SDP1
-
IPMP
-
VIDEO_H264
-
AUDIO_AAC_RAW
-
SUBS
-
AUX_3D
-
VIDEO_AVC_SVC
-
VIDEO_AVC_MVC
-
VIDEO_J2K
-
VIDEO_MPEG2_3D
-
VIDEO_H264_3D
-
VIDEO_CAVS
-
IPMP_STREAM
-
AUDIO_AC3
-
AUDIO_DTS
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
lookup
Find the MpegStreamType based on the MPEG-TS stream tag number.- Parameters:
tag- stream tag number- Returns:
- MpegStreamType (may be null)
- See Also:
-
lookup
Find the MpegStreamType based on aMTSUtils.StreamType.- Parameters:
streamType- must be non-null- Returns:
- MpegStreamType (may be null)
-