ext/wavpack/gstwavpackenc.c: Add missing audioconverts in the example pipelines of wavpackenc. As the wavpack stuff n...

Original commit message from CVS:
* ext/wavpack/gstwavpackenc.c:
Add missing audioconverts in the example pipelines of wavpackenc. As
the wavpack stuff now needs input with 32 bit width (and random depth)
this is needed now. The example pipelines for the parser and decoder
are still fine.
This commit is contained in:
Sebastian Dröge 2007-05-20 21:31:58 +00:00
parent fa055153aa
commit d6a28f9ea1

View file

@ -29,20 +29,20 @@
* <title>Example launch line</title> * <title>Example launch line</title>
* <para> * <para>
* <programlisting> * <programlisting>
* gst-launch audiotestsrc num-buffers=500 ! wavpackenc ! filesink location=sinewave.wv * gst-launch audiotestsrc num-buffers=500 ! audioconvert ! wavpackenc ! filesink location=sinewave.wv
* </programlisting> * </programlisting>
* This pipeline encodes audio from audiotestsrc into a Wavpack file. * This pipeline encodes audio from audiotestsrc into a Wavpack file.
* </para> * </para>
* <para> * <para>
* <programlisting> * <programlisting>
* gst-launch cdda://1 ! wavpackenc ! filesink location=track1.wv * gst-launch cdda://1 ! audioconvert ! wavpackenc ! filesink location=track1.wv
* </programlisting> * </programlisting>
* This pipeline encodes audio from an audio CD into a Wavpack file using * This pipeline encodes audio from an audio CD into a Wavpack file using
* lossless encoding (the file output will be fairly large). * lossless encoding (the file output will be fairly large).
* </para> * </para>
* <para> * <para>
* <programlisting> * <programlisting>
* gst-launch cdda://1 ! wavpackenc bitrate=128000 ! filesink location=track1.wv * gst-launch cdda://1 ! audioconvert ! wavpackenc bitrate=128000 ! filesink location=track1.wv
* </programlisting> * </programlisting>
* This pipeline encodes audio from an audio CD into a Wavpack file using * This pipeline encodes audio from an audio CD into a Wavpack file using
* lossy encoding at a certain bitrate (the file will be fairly small). * lossy encoding at a certain bitrate (the file will be fairly small).