From 046311d3eaceaa1df6ba56294a485e27a11f9123 Mon Sep 17 00:00:00 2001 From: Sebastian Dröge Date: Wed, 22 Apr 2009 19:52:05 +0200 Subject: [MOVED FROM BAD 50/57] flv: Add documentation to flvmux and flvdemux Partially fixes bug #573737. --- gst/flv/gstflvdemux.c | 13 +++++++++++++ gst/flv/gstflvdemux.h | 2 ++ gst/flv/gstflvmux.c | 13 +++++++++++++ gst/flv/gstflvmux.h | 2 ++ 4 files changed, 30 insertions(+) (limited to 'gst/flv') diff --git a/gst/flv/gstflvdemux.c b/gst/flv/gstflvdemux.c index a2bbd7cb..f31a22e8 100644 --- a/gst/flv/gstflvdemux.c +++ b/gst/flv/gstflvdemux.c @@ -17,6 +17,19 @@ * Boston, MA 02111-1307, USA. */ +/** + * SECTION:element-flvdemux + * + * flvdemux demuxes an FLV file into the different contained streams. + * + * + * Example launch line + * |[ + * gst-launch -v filesrc location=/path/to/flv ! flvdemux ! audioconvert ! autoaudiosink + * ]| This pipeline demuxes an FLV file and outputs the contained raw audio streams. + * + */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/gst/flv/gstflvdemux.h b/gst/flv/gstflvdemux.h index 1a675e7c..72c0bcd4 100644 --- a/gst/flv/gstflvdemux.h +++ b/gst/flv/gstflvdemux.h @@ -56,6 +56,8 @@ struct _GstFLVDemux GstPad *audio_pad; GstPad *video_pad; + + /* */ GstIndex *index; gint index_id; diff --git a/gst/flv/gstflvmux.c b/gst/flv/gstflvmux.c index 2a7c9169..c1bd1205 100644 --- a/gst/flv/gstflvmux.c +++ b/gst/flv/gstflvmux.c @@ -18,6 +18,19 @@ * Boston, MA 02111-1307, USA. */ +/** + * SECTION:element-flvmux + * + * flvmux muxes different streams into an FLV file. + * + * + * Example launch line + * |[ + * gst-launch -v filesrc location=/path/to/audio ! decodebin2 ! queue ! flvmux name=m ! filesink location=file.flv filesrc location=/path/to/video ! decodebin2 ! queue ! m. + * ]| This pipeline muxes an audio and video file into a single FLV file. + * + */ + /* TODO: * - Write metadata for the file, see FLV spec page 13 */ diff --git a/gst/flv/gstflvmux.h b/gst/flv/gstflvmux.h index c0af8e8f..3d634a4c 100644 --- a/gst/flv/gstflvmux.h +++ b/gst/flv/gstflvmux.h @@ -67,6 +67,8 @@ typedef struct _GstFlvMux { GstPad *srcpad; GstCollectPads *collect; + + /* */ GstPadEventFunction collect_event; GstFlvMuxState state; -- cgit