public static enum LiveTranscoding.AudioCodecProfileType extends java.lang.Enum<LiveTranscoding.AudioCodecProfileType>
Enum Constant and Description |
---|
HE_AAC
1: HE-AAC, which is the high-efficiency audio codec type.
|
HE_AAC_V2
2: HE-AACv2, which is the high-efficiency audio codec type.
|
LC_AAC
0: LC-AAC, which is the low-complexity audio codec type.
|
Modifier and Type | Method and Description |
---|---|
static int |
getValue(LiveTranscoding.AudioCodecProfileType type) |
static LiveTranscoding.AudioCodecProfileType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LiveTranscoding.AudioCodecProfileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LiveTranscoding.AudioCodecProfileType LC_AAC
public static final LiveTranscoding.AudioCodecProfileType HE_AAC
public static final LiveTranscoding.AudioCodecProfileType HE_AAC_V2
public static LiveTranscoding.AudioCodecProfileType[] values()
for (LiveTranscoding.AudioCodecProfileType c : LiveTranscoding.AudioCodecProfileType.values()) System.out.println(c);
public static LiveTranscoding.AudioCodecProfileType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static int getValue(LiveTranscoding.AudioCodecProfileType type)