mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
baseparse: documentation fixes
This commit is contained in:
parent
14a3a9f42a
commit
899a6de75b
1 changed files with 4 additions and 9 deletions
|
@ -95,7 +95,7 @@
|
||||||
* over again.
|
* over again.
|
||||||
* </para></listitem>
|
* </para></listitem>
|
||||||
* <listitem><para>
|
* <listitem><para>
|
||||||
* During the parsing process GstBaseClass will handle both srcpad and
|
* During the parsing process GstBaseParseClass will handle both srcpad and
|
||||||
* sinkpad events. They will be passed to subclass if @event or
|
* sinkpad events. They will be passed to subclass if @event or
|
||||||
* @src_event callbacks have been provided.
|
* @src_event callbacks have been provided.
|
||||||
* </para></listitem>
|
* </para></listitem>
|
||||||
|
@ -1422,16 +1422,11 @@ gst_base_parse_set_min_frame_size (GstBaseParse * parse, guint min_size)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gst_base_transform_set_passthrough:
|
* gst_base_transform_set_passthrough:
|
||||||
* @trans: the #GstBaseTransform to set
|
* @trans: the #GstBaseParse to set
|
||||||
* @passthrough: boolean indicating passthrough mode.
|
* @passthrough: boolean indicating passthrough mode.
|
||||||
*
|
*
|
||||||
* Set passthrough mode for this filter by default. This is mostly
|
* Set passthrough mode for this parser. If operating in passthrough,
|
||||||
* useful for filters that do not care about negotiation.
|
* incoming buffers are pushed through unmodified.
|
||||||
*
|
|
||||||
* Always TRUE for filters which don't implement either a transform
|
|
||||||
* or transform_ip method.
|
|
||||||
*
|
|
||||||
* MT safe.
|
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gst_base_parse_set_passthrough (GstBaseParse * parse, gboolean passthrough)
|
gst_base_parse_set_passthrough (GstBaseParse * parse, gboolean passthrough)
|
||||||
|
|
Loading…
Reference in a new issue