Package | Description |
---|---|
org.gstreamer | |
org.gstreamer.lowlevel | |
org.gstreamer.query |
Modifier and Type | Method and Description |
---|---|
Query |
Query.makeWritable()
Makes a writable query from this query.
|
Modifier and Type | Method and Description |
---|---|
Query |
GstQueryAPI.gst_query_new_application(QueryType type,
Structure structure) |
Query |
GstQueryAPI.gst_query_new_convert(Format src_format,
long value,
Format dest_format) |
Query |
GstQueryAPI.gst_query_new_duration(Format format) |
Query |
GstQueryAPI.gst_query_new_formats() |
Query |
GstQueryAPI.gst_query_new_latency() |
Query |
GstQueryAPI.gst_query_new_position(Format format) |
Query |
GstQueryAPI.gst_query_new_seeking(Format format) |
Query |
GstQueryAPI.gst_query_new_segment(Format format) |
Modifier and Type | Method and Description |
---|---|
boolean |
GstElementAPI.gst_element_query(Element elem,
Query query) |
Structure |
GstQueryAPI.gst_query_get_structure(Query query) |
void |
GstQueryAPI.gst_query_parse_convert(Query query,
Format[] src_format,
long[] src_value,
Format[] dest_format,
long[] dest_value) |
void |
GstQueryAPI.gst_query_parse_duration(Query query,
Format[] format,
long[] duration) |
void |
GstQueryAPI.gst_query_parse_formats_length(Query query,
int[] n_formats) |
void |
GstQueryAPI.gst_query_parse_formats_nth(Query query,
int nth,
Format[] format) |
void |
GstQueryAPI.gst_query_parse_latency(Query query,
boolean[] live,
ClockTime[] min_latency,
ClockTime[] max_latency) |
void |
GstQueryAPI.gst_query_parse_position(Query query,
Format[] format,
long[] cur) |
void |
GstQueryAPI.gst_query_parse_seeking(Query query,
Format[] format,
boolean[] seekable,
long[] segment_start,
long[] segment_end) |
void |
GstQueryAPI.gst_query_parse_segment(Query query,
double[] rate,
Format[] format,
long[] start_value,
long[] stop_value) |
void |
GstQueryAPI.gst_query_set_convert(Query query,
Format src_format,
long src_value,
Format dest_format,
long dest_value) |
void |
GstQueryAPI.gst_query_set_duration(Query query,
Format format,
long duration) |
void |
GstQueryAPI.gst_query_set_formats(Query query,
int n_formats,
Format... formats) |
void |
GstQueryAPI.gst_query_set_formatsv(Query query,
int n_formats,
Format[] formats) |
void |
GstQueryAPI.gst_query_set_latency(Query query,
boolean live,
ClockTime min_latency,
ClockTime max_latency) |
void |
GstQueryAPI.gst_query_set_position(Query query,
Format format,
long cur) |
void |
GstQueryAPI.gst_query_set_seeking(Query query,
Format format,
boolean seekable,
long segment_start,
long segment_end) |
void |
GstQueryAPI.gst_query_set_segment(Query query,
double rate,
Format format,
long start_value,
long stop_value) |
Modifier and Type | Class and Description |
---|---|
class |
ApplicationQuery
A Custom application query.
|
class |
ConvertQuery
Convert values between formats
|
class |
DurationQuery
Used to query the total duration of a stream.
|
class |
FormatsQuery
Used for querying formats of the stream.
|
class |
LatencyQuery |
class |
PositionQuery
Used to query an element for the current position in the stream.
|
class |
SeekingQuery
Used for querying the seeking properties of the stream.
|
class |
SegmentQuery
Used to discover information about the currently configured segment for playback.
|