Top |
Types and Values
GstValueArray | |
struct | GstControlSource |
struct | GstControlSourceClass |
struct | GstTimedValue |
Description
The GstControlSource is a base class for control value sources that could be used to get timestamp-value pairs. A control source essentially is a function over time.
A GstControlSource is used by first getting an instance of a specific control-source, creating a binding for the control-source to the target property of the element and then adding the binding to the element. The binding will convert the data types and value range to fit to the bound property.
For implementing a new GstControlSource one has to implement
GstControlSourceGetValue and GstControlSourceGetValueArray functions.
These are then used by gst_control_source_get_value()
and
gst_control_source_get_value_array()
to get values for specific timestamps.
Functions
GstControlSourceGetValue ()
gboolean (*GstControlSourceGetValue) (GstControlSource *self
,GstClockTime timestamp
,gdouble *value
);
Function for returning a value for a given timestamp.
Parameters
self |
the GstControlSource instance |
|
timestamp |
timestamp for which a value should be calculated |
|
value |
a value which will be set to the result. |
GstControlSourceGetValueArray ()
gboolean (*GstControlSourceGetValueArray) (GstControlSource *self
,GstClockTime timestamp
,GstClockTime interval
,guint n_values
,gdouble *values
);
Function for returning an array of values for starting at a given timestamp.
Parameters
self |
the GstControlSource instance |
|
timestamp |
timestamp for which a value should be calculated |
|
interval |
the time spacing between subsequent values |
|
n_values |
the number of values |
|
values |
array to put control-values in |
gst_control_source_get_value ()
gboolean gst_control_source_get_value (GstControlSource *self
,GstClockTime timestamp
,gdouble *value
);
Gets the value for this GstControlSource at a given timestamp.
[method]
Parameters
self |
the GstControlSource object |
|
timestamp |
the time for which the value should be returned |
|
value |
the value. |
[out] |
gst_control_source_get_value_array ()
gboolean gst_control_source_get_value_array (GstControlSource *self
,GstClockTime timestamp
,GstClockTime interval
,guint n_values
,gdouble *values
);
Gets an array of values for for this GstControlSource. Values that are undefined contain NANs.
[method]
Parameters
self |
the GstControlSource object |
|
timestamp |
the first timestamp |
|
interval |
the time steps |
|
n_values |
the number of values to fetch |
|
values |
array to put control-values in. |
[array length=n_values] |
Types and Values
struct GstControlSource
struct GstControlSource { GstControlSourceGetValue get_value; /* Returns the value for a property at a given timestamp */ GstControlSourceGetValueArray get_value_array; /* Returns values for a property in a given timespan */ };
The instance structure of GstControlSource.
Members
GstControlSourceGetValue |
Function for returning a value for a given timestamp |
|
GstControlSourceGetValueArray |
Function for returning a values array for a given timestamp |
struct GstControlSourceClass
struct GstControlSourceClass { GstObjectClass parent_class; };
The class structure of GstControlSource.
struct GstTimedValue
struct GstTimedValue { GstClockTime timestamp; gdouble value; };
Structure for saving a timestamp and a value.
Members
GstClockTime |
timestamp of the value change |
|
gdouble |
the corresponding value |