baseparse: documentation fixes

This commit is contained in:
Mark Nauwelaerts 2009-10-28 12:02:03 +01:00 committed by Tim-Philipp Müller
parent 14a3a9f42a
commit 899a6de75b

View file

@ -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)