public enum PlayFlags extends Enum<PlayFlags> implements NativeFlags<PlayFlags>
PlayBin sinks.| Enum Constant and Description |
|---|
AUDIO
Enable rendering of the audio stream.
|
BUFFERING
Enable buffering of the demuxed or parsed data.
|
DEINTERLACE
Deinterlace raw video (if native not forced).
|
DOWNLOAD
Enable progressive download buffering for selected formats.
|
FORCE_FILTERS
Force audio/video filters to be applied if set.
|
FORCE_SW_DECODERS
Force to use only software-based decoders ignoring those with hardware
class.
|
NATIVE_AUDIO
Only allow native audio formats, this omits configuration of audioconvert
and audioresample.
|
NATIVE_VIDEO
Only allow native video formats, this omits configuration of videoconvert
and videoscale.
|
SOFT_COLORBALANCE
Use a software filter for colour balance.
|
SOFT_VOLUME
Use software volume.
|
TEXT
Enable rendering of subtitles.
|
VIDEO
Enable rendering of the video stream.
|
VIS
Enable rendering of visualisations when there is no video stream.
|
| Modifier and Type | Method and Description |
|---|---|
int |
intValue() |
static PlayFlags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlayFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOffromInt, toInt, toIntfromInt, fromIntpublic static final PlayFlags VIDEO
public static final PlayFlags AUDIO
public static final PlayFlags TEXT
public static final PlayFlags VIS
public static final PlayFlags SOFT_VOLUME
public static final PlayFlags NATIVE_AUDIO
public static final PlayFlags NATIVE_VIDEO
public static final PlayFlags DOWNLOAD
public static final PlayFlags BUFFERING
public static final PlayFlags DEINTERLACE
public static final PlayFlags SOFT_COLORBALANCE
public static final PlayFlags FORCE_FILTERS
public static final PlayFlags FORCE_SW_DECODERS
public static PlayFlags[] values()
for (PlayFlags c : PlayFlags.values()) System.out.println(c);
public static PlayFlags 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 nullpublic int intValue()
intValue in interface NativeEnum<PlayFlags>Copyright © 2021 gstreamer-java. All rights reserved.