mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
basetransform: Add Since markers for new vfuncs
Add Since: 1.6 markers for the new submit_input_buffer() and generate_output() vfuncs
This commit is contained in:
parent
a198803bd6
commit
0d96487879
1 changed files with 2 additions and 2 deletions
|
@ -199,7 +199,7 @@ struct _GstBaseTransform {
|
||||||
* member variable. If the buffer is dropped due to QoS, it returns
|
* member variable. If the buffer is dropped due to QoS, it returns
|
||||||
* GST_BASE_TRANSFORM_FLOW_DROPPED. If this input buffer is not
|
* GST_BASE_TRANSFORM_FLOW_DROPPED. If this input buffer is not
|
||||||
* contiguous with any previous input buffer, then @is_discont
|
* contiguous with any previous input buffer, then @is_discont
|
||||||
* is set to #TRUE.
|
* is set to #TRUE. (Since: 1.6)
|
||||||
* @generate_output: Called after each new input buffer is submitted repeatedly
|
* @generate_output: Called after each new input buffer is submitted repeatedly
|
||||||
* until it either generates an error or fails to generate an output
|
* until it either generates an error or fails to generate an output
|
||||||
* buffer. The default implementation takes the contents of the
|
* buffer. The default implementation takes the contents of the
|
||||||
|
@ -208,7 +208,7 @@ struct _GstBaseTransform {
|
||||||
* calls either @transform or @transform_ip. Elements that don't
|
* calls either @transform or @transform_ip. Elements that don't
|
||||||
* do 1-to-1 transformations on input to output buffers can either
|
* do 1-to-1 transformations on input to output buffers can either
|
||||||
* return GST_BASE_TRANSFORM_FLOW_DROPPED or simply not generate
|
* return GST_BASE_TRANSFORM_FLOW_DROPPED or simply not generate
|
||||||
* an output buffer until they are ready to do so.
|
* an output buffer until they are ready to do so. (Since: 1.6)
|
||||||
*
|
*
|
||||||
* Subclasses can override any of the available virtual methods or not, as
|
* Subclasses can override any of the available virtual methods or not, as
|
||||||
* needed. At minimum either @transform or @transform_ip need to be overridden.
|
* needed. At minimum either @transform or @transform_ip need to be overridden.
|
||||||
|
|
Loading…
Reference in a new issue