public enum ProprietaryFeature extends java.lang.Enum<ProprietaryFeature>
Enum Constant and Description |
---|
AAC
Represents support of the AAC codec.
|
H_264
Represents support of the H.264 codec.
|
HEVC
Represents support of the HEVC codec.
|
WIDEVINE
Represents support of the Widevine DRM decryption.
|
Modifier and Type | Method and Description |
---|---|
static ProprietaryFeature |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProprietaryFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProprietaryFeature H_264
Important: H.264 codec is a proprietary component. By enabling this codec you state that you are aware that H.264 is a proprietary component and you should have a license in order to use it. For more information, you could contact patent holders: Via Licensing and MPEG LA. TeamDev shall not be responsible for your use of H.264 codec.
public static final ProprietaryFeature AAC
Important: AAC codec is a proprietary component. By enabling this codec you state that you are aware that AAC is a proprietary component and you should have a license in order to use it. For more information, you could contact patent holders: Via Licensing and MPEG LA. TeamDev shall not be responsible for your use of AAC codec.
public static final ProprietaryFeature WIDEVINE
Important: Widevine is a Google proprietary component, governed by its own terms of use. For more information, see https://www.widevine.com/. TeamDev shall not be responsible for your use of Widevine.
public static final ProprietaryFeature HEVC
Important: HEVC codec is a proprietary component. By enabling this codec you state that you are aware that HEVC is a proprietary component and you should have a license in order to use it. For more information, you could contact patent holders: Via Licensing and MPEG LA. TeamDev shall not be responsible for your use of HEVC codec.
public static ProprietaryFeature[] values()
for (ProprietaryFeature c : ProprietaryFeature.values()) System.out.println(c);
public static ProprietaryFeature 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 null