diff --git a/gst/flv/gstflvdemux.c b/gst/flv/gstflvdemux.c index a2bbd7cbf9..f31a22e81e 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 1a675e7c77..72c0bcd4ec 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 2a7c916968..c1bd120526 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 c0af8e8f14..3d634a4c52 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;