public enum OpusApplication extends Enum<OpusApplication>
OpusApplication class.
| Enum Constant and Description |
|---|
OPUS_APPLICATION_AUDIO
Best for broadcast/high-fidelity application where the decoded audio should be as close as possible to the input
|
OPUS_APPLICATION_RESTRICTED_LOWDELAY
Only use when lowest-achievable latency is what matters most.
|
OPUS_APPLICATION_UNIMPLEMENTED
Opus application unimplemented opus application.
|
OPUS_APPLICATION_VOIP
Best for most VoIP/videoconference applications where listening quality and intelligibility matter most
|
| Modifier and Type | Method and Description |
|---|---|
static OpusApplication |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OpusApplication[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpusApplication OPUS_APPLICATION_UNIMPLEMENTED
public static final OpusApplication OPUS_APPLICATION_VOIP
public static final OpusApplication OPUS_APPLICATION_AUDIO
public static final OpusApplication OPUS_APPLICATION_RESTRICTED_LOWDELAY
public static OpusApplication[] values()
for (OpusApplication c : OpusApplication.values()) System.out.println(c);
public static OpusApplication valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024. All rights reserved.