From 9cf73bdd8f18505269fa4b6d1d80127945e735b1 Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Wed, 28 Jan 2009 17:46:06 +0200 Subject: Update and add documentation for plugins with deps (ext). Link to properties. Correct titles for examples. Document a few trivial cases. Keep lists in section file and docs/plugins/Makefile.am alphabetically ordered. Fix warnings that gtk-doc points out. --- ext/dv/gstdvdec.c | 20 ++++++++------------ ext/dv/gstdvdemux.c | 22 +++++++++------------- 2 files changed, 17 insertions(+), 25 deletions(-) (limited to 'ext/dv') diff --git a/ext/dv/gstdvdec.c b/ext/dv/gstdvdec.c index 958aa518..ade97966 100644 --- a/ext/dv/gstdvdec.c +++ b/ext/dv/gstdvdec.c @@ -21,25 +21,21 @@ /** * SECTION:element-dvdec * - * - * * dvdec decodes DV video into raw video. The element expects a full DV frame * as input, which is 120000 bytes for NTSC and 144000 for PAL video. - * - * - * This element can perform simple frame dropping with the drop-factor + * + * This element can perform simple frame dropping with the #GstDVDec:drop-factor * property. Setting this property to a value N > 1 will only decode every * Nth frame. - * + * + * * Example launch line - * - * + * |[ * gst-launch filesrc location=test.dv ! dvdemux name=demux ! dvdec ! xvimagesink - * - * This pipeline decodes and renders the raw DV stream to a videosink. - * - * Last reviewed on 2006-02-28 (0.10.3) + * ]| This pipeline decodes and renders the raw DV stream to a videosink. * + * + * Last reviewed on 2006-02-28 (0.10.3) */ #ifdef HAVE_CONFIG_H diff --git a/ext/dv/gstdvdemux.c b/ext/dv/gstdvdemux.c index 39340116..7c7509fe 100644 --- a/ext/dv/gstdvdemux.c +++ b/ext/dv/gstdvdemux.c @@ -30,24 +30,20 @@ /** * SECTION:element-dvdemux * - * - * * dvdemux splits raw DV into its audio and video components. The audio will be * decoded raw samples and the video will be encoded DV video. - * - * - * This element can operate in both push and pull mode depending on the capabilities - * of the upstream peer. - * + * + * This element can operate in both push and pull mode depending on the + * capabilities of the upstream peer. + * + * * Example launch line - * - * + * |[ * gst-launch filesrc location=test.dv ! dvdemux name=demux ! queue ! audioconvert ! alsasink demux. ! queue ! dvdec ! xvimagesink - * - * This pipeline decodes and renders the raw DV stream to an audio and a videosink. - * - * Last reviewed on 2006-02-27 (0.10.3) + * ]| This pipeline decodes and renders the raw DV stream to an audio and a videosink. * + * + * Last reviewed on 2006-02-27 (0.10.3) */ /* DV output has two modes, normal and wide. The resolution is the same in both -- cgit