public enum QTMediaType extends Enum<QTMediaType>
| Enum Constant and Description |
|---|
Muxed
The QTKit type of multiplexed media which may contain audio, video, and
other data in a single stream.
|
Sound
The QTKit type of media which contains only audio frames.
|
Video
The QTKit type of media which contains only video frames.
|
| Modifier and Type | Method and Description |
|---|---|
static QTMediaType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QTMediaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QTMediaType Muxed
public static final QTMediaType Sound
public static final QTMediaType Video
public static QTMediaType[] values()
for (QTMediaType c : QTMediaType.values()) System.out.println(c);
public static QTMediaType 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 © 2021 jitsi.org. All rights reserved.