diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2007-01-09 12:25:26 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2007-01-09 12:25:26 +0000 |
commit | 5aadb77a1dfcba8a9bac2341c9c3cff610e425f8 (patch) | |
tree | 9c325e736d917ef39758bdf994c437ebd8b3b17b | |
parent | 42b8b3a37f5ab9cda3dc63b362d4f59ec0b8109a (diff) |
gst/avi/gstavidemux.c: Fix docs.
Original commit message from CVS:
* gst/avi/gstavidemux.c:
Fix docs.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gst/avi/gstavidemux.c | 6 |
2 files changed, 9 insertions, 2 deletions
@@ -1,5 +1,10 @@ 2007-01-09 Wim Taymans <wim@fluendo.com> + * gst/avi/gstavidemux.c: + Fix docs. + +2007-01-09 Wim Taymans <wim@fluendo.com> + * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_base_init), diff --git a/gst/avi/gstavidemux.c b/gst/avi/gstavidemux.c index 100272f7..f9c35973 100644 --- a/gst/avi/gstavidemux.c +++ b/gst/avi/gstavidemux.c @@ -27,12 +27,13 @@ * Demuxes an .avi file into raw or compressed audio and/or video streams. * </para> * <para> - * This element currently only supports pull-based scheduling. + * This element supports both push and pull-based scheduling, depending on the + * capabilities of the upstream elements. * </para> * <title>Example launch line</title> * <para> * <programlisting> - * gst-launch filesrc test.avi ! avidemux name=demux demux.audio_00 ! decodebin ! audioconvert ! audioresample ! autoaudiosink demux.video_00 ! queue ! decodebin ! ffmpegcolorspace ! videoscale ! autovideosink + * gst-launch filesrc location=test.avi ! avidemux name=demux demux.audio_00 ! decodebin ! audioconvert ! audioresample ! autoaudiosink demux.video_00 ! queue ! decodebin ! ffmpegcolorspace ! videoscale ! autovideosink * </programlisting> * Play (parse and decode) an .avi file and try to output it to * an automatically detected soundcard and videosink. If the AVI file contains @@ -41,6 +42,7 @@ * </para> * </refsect2> * + * Last reviewed on 2006-12-29 (0.10.6) */ #ifdef HAVE_CONFIG_H |