gstreamermm
1.0.10
|
A new segment query object. More...
Public Member Functions | |
void | set (double rate, Format format, gint64 start_value, gint64 stop_value) |
Answer a segment query by setting the requested values. More... | |
void | parse (double& rate, Format& format, gint64& start_value, gint64& stop_value) const |
Parse a segment query answer. More... | |
double | parse_rate () const |
Parse a segment query answer, returning the rate. More... | |
Format | parse_format () const |
Parse a segment query answer, returning the format. More... | |
gint64 | parse_start () const |
Parse a segment query answer, returning the start value. More... | |
gint64 | parse_stop () const |
Parse a segment query answer, returning the stop value. More... | |
![]() | |
void | reference () const |
Increment the reference count for this object. More... | |
void | unreference () const |
Decrement the reference count for this object. More... | |
GstQuery* | gobj () |
Provides access to the underlying C instance. More... | |
const GstQuery* | gobj () const |
Provides access to the underlying C instance. More... | |
GstQuery* | gobj_copy () const |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. More... | |
Glib::RefPtr< Gst::Query > | create_writable () |
Makes a writable query from the given query. More... | |
Gst::Structure | get_structure () const |
Get the structure of a query. More... | |
QueryType | get_query_type () const |
Get the Gst::QueryType of the query. More... | |
void | set_caps_result (Glib::RefPtr< Gst::Caps > caps) |
Set the caps result in query. More... | |
void | set_accept_caps_result (bool res) |
Set result as the result for the query. More... | |
![]() | |
void | reference () const |
Increment the reference count for this object. More... | |
void | unreference () const |
Decrement the reference count for this object. More... | |
GstMiniObject* | gobj () |
Provides access to the underlying C instance. More... | |
const GstMiniObject* | gobj () const |
Provides access to the underlying C instance. More... | |
GstMiniObject* | gobj_copy () const |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. More... | |
~MiniObject () | |
guint | get_flags () const |
void | set_flags (const guint& value) |
bool | lock (LockFlags flags) |
Lock the mini-object with the specified access mode in flags. More... | |
void | unlock (LockFlags flags) |
Unlock the mini-object with the specified access mode in flags. More... | |
bool | is_writable () const |
If mini_object has the LOCKABLE flag set, check if the current EXCLUSIVE lock on object is the only one, this means that changes to the object will not be visible to any other object. More... | |
Glib::RefPtr< MiniObject > | create_writable () |
Checks if a mini-object is writable. More... | |
Static Public Member Functions | |
static Glib::RefPtr < Gst::QuerySegment > | create (Format format) |
Constructs a new segment query object. More... | |
![]() | |
static Glib::RefPtr< Gst::Query > | create_buffering (Gst::Format format) |
Constructs a new query object for querying the buffering status of a stream. More... | |
static Glib::RefPtr< Gst::Query > | create_allocation (Glib::RefPtr< Gst::Caps > caps, bool need_pool) |
Constructs a new query object for querying the allocation properties. More... | |
static Glib::RefPtr< Gst::Query > | create_uri () |
Constructs a new query URI query object. More... | |
static Glib::RefPtr< Gst::Query > | create_scheduling () |
Constructs a new query object for querying the scheduling properties. More... | |
static Glib::RefPtr< Gst::Query > | create_drain () |
Constructs a new query object for querying the drain state. More... | |
static Glib::RefPtr< Gst::Query > | create_convert (Gst::Format format, gint64 value, Gst::Format dest_format) |
Constructs a new convert query object. More... | |
static Glib::RefPtr< Gst::Query > | create_position (Gst::Format format) |
Constructs a new query stream position query object. More... | |
static Glib::RefPtr< Gst::Query > | create_duration (Gst::Format format) |
Constructs a new stream duration query object to query in the given format. More... | |
static Glib::RefPtr< Gst::Query > | create_latency () |
Constructs a new latency query object. More... | |
static Glib::RefPtr< Gst::Query > | create_seeking (Gst::Format format) |
Constructs a new query object for querying seeking properties of the stream. More... | |
static Glib::RefPtr< Gst::Query > | create_formats () |
Constructs a new query object for querying formats of the stream. More... | |
static Glib::RefPtr< Gst::Query > | create_segment (Gst::Format format) |
Constructs a new segment query object. More... | |
static Glib::RefPtr< Gst::Query > | create_caps (Glib::RefPtr< Gst::Caps > filter) |
Constructs a new query object for querying the caps. More... | |
static Glib::RefPtr< Gst::Query > | create_accept_caps (Glib::RefPtr< Gst::Caps > filter) |
Constructs a new query object for querying if caps are accepted. More... | |
Additional Inherited Members | |
![]() | |
Query () | |
void | operator delete (void*, std::size_t) |
![]() | |
MiniObject () | |
void | operator delete (void*, std::size_t) |
![]() | |
template<class QueryType > | |
static Glib::RefPtr< QueryType > | wrap (GstQuery* query, bool take_copy=false) |
![]() | |
Glib::RefPtr< Gst::Query > | wrap (GstQuery* object, bool take_copy=false) |
A Glib::wrap() method for this object. More... | |
![]() | |
Glib::RefPtr< Gst::MiniObject > | wrap (GstMiniObject* object, bool take_copy=false) |
A Glib::wrap() method for this object. More... | |
A new segment query object.
See create() for more details.
|
static |
Constructs a new segment query object.
A segment query is used to discover information about the currently configured segment for playback.
format | The Gst::Format for the new query. |
void Gst::QuerySegment::parse | ( | double & | rate, |
Format& | format, | ||
gint64 & | start_value, | ||
gint64 & | stop_value | ||
) | const |
Parse a segment query answer.
See set() for an explanation of the function arguments. Use the other parse() methods to parse individual values.
rate | The storage for the rate of the segment. |
format | The storage for the Gst::Format of the values. |
start_value | The storage for the start value. |
stop_value | The storage for the stop value. |
Format Gst::QuerySegment::parse_format | ( | ) | const |
Parse a segment query answer, returning the format.
See set() for an explanation of the function arguments.
double Gst::QuerySegment::parse_rate | ( | ) | const |
gint64 Gst::QuerySegment::parse_start | ( | ) | const |
gint64 Gst::QuerySegment::parse_stop | ( | ) | const |
void Gst::QuerySegment::set | ( | double | rate, |
Format | format, | ||
gint64 | start_value, | ||
gint64 | stop_value | ||
) |
Answer a segment query by setting the requested values.
The normal playback segment of a pipeline is 0 to duration at the default rate of 1.0. If a seek was performed on the pipeline to play a different segment, this query will return the range specified in the last seek.
start_value and stop_value will respectively contain the configured playback range start and stop values expressed in format. The values are always between 0 and the duration of the media and start_value <= stop_value. rate will contain the playback rate. For negative rates, playback will actually happen from stop_value to start_value.
rate | The rate of the segment. |
format | The Gst::Format of the segment values (start_value and stop_value). |
start_value | The start value. |
stop_value | The stop value. |