From: Thibault Saunier Date: Wed, 8 Mar 2017 18:01:13 +0000 (-0300) Subject: docs: Port all docstring to gtk-doc markdown X-Git-Tag: 1.16.2~574^2~61 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6e24e42d9af1b7112425497902e28fb70aada1d4;p=platform%2Fupstream%2Fgstreamer.git docs: Port all docstring to gtk-doc markdown --- diff --git a/libs/gst/base/gstaggregator.c b/libs/gst/base/gstaggregator.c index d693541..d0ec234 100644 --- a/libs/gst/base/gstaggregator.c +++ b/libs/gst/base/gstaggregator.c @@ -21,46 +21,40 @@ */ /** * SECTION: gstaggregator + * @title: GstAggregator * @short_description: manages a set of pads with the purpose of * aggregating their buffers. * @see_also: gstcollectpads for historical reasons. * * Manages a set of pads with the purpose of aggregating their buffers. * Control is given to the subclass when all pads have data. - * - * - * Base class for mixers and muxers. Subclasses should at least implement + * + * * Base class for mixers and muxers. Subclasses should at least implement * the #GstAggregatorClass.aggregate() virtual method. - * - * - * When data is queued on all pads, tha aggregate vmethod is called. - * - * - * One can peek at the data on any given GstAggregatorPad with the + * + * * When data is queued on all pads, tha aggregate vmethod is called. + * + * * One can peek at the data on any given GstAggregatorPad with the * gst_aggregator_pad_get_buffer () method, and take ownership of it * with the gst_aggregator_pad_steal_buffer () method. When a buffer * has been taken with steal_buffer (), a new buffer can be queued * on that pad. - * - * - * If the subclass wishes to push a buffer downstream in its aggregate + * + * * If the subclass wishes to push a buffer downstream in its aggregate * implementation, it should do so through the * gst_aggregator_finish_buffer () method. This method will take care * of sending and ordering mandatory events such as stream start, caps * and segment. - * - * - * Same goes for EOS events, which should not be pushed directly by the + * + * * Same goes for EOS events, which should not be pushed directly by the * subclass, it should instead return GST_FLOW_EOS in its aggregate * implementation. - * - * - * Note that the aggregator logic regarding gap event handling is to turn + * + * * Note that the aggregator logic regarding gap event handling is to turn * these into gap buffers with matching PTS and duration. It will also * flag these buffers with GST_BUFFER_FLAG_GAP and GST_BUFFER_FLAG_DROPPABLE * to ease their identification and subsequent processing. - * - * + * */ #ifdef HAVE_CONFIG_H