diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2007-05-20 21:31:58 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2007-05-20 21:31:58 +0000 |
commit | e425c5f02b6b3b97b9b7bb044cc600d48bd00fea (patch) | |
tree | 4a4d47f31b73f8e395f3d3ccbb89276a4273afb2 | |
parent | 463847e9fe7699521bd9cfd33513f6931cfb4aba (diff) | |
download | gst-plugins-bad-e425c5f02b6b3b97b9b7bb044cc600d48bd00fea.tar.gz gst-plugins-bad-e425c5f02b6b3b97b9b7bb044cc600d48bd00fea.tar.bz2 gst-plugins-bad-e425c5f02b6b3b97b9b7bb044cc600d48bd00fea.zip |
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.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | ext/wavpack/gstwavpackenc.c | 6 |
2 files changed, 11 insertions, 3 deletions
@@ -1,3 +1,11 @@ +2007-05-20 Sebastian Dröge <slomo@circular-chaos.org> + + * 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. + 2007-05-20 Thomas Vander Stichele <thomas at apestaart dot org> * docs/plugins/Makefile.am: diff --git a/ext/wavpack/gstwavpackenc.c b/ext/wavpack/gstwavpackenc.c index c1d25964..beb3fb6b 100644 --- a/ext/wavpack/gstwavpackenc.c +++ b/ext/wavpack/gstwavpackenc.c @@ -29,20 +29,20 @@ * <title>Example launch line</title> * <para> * <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> * This pipeline encodes audio from audiotestsrc into a Wavpack file. * </para> * <para> * <programlisting> - * gst-launch cdda://1 ! wavpackenc ! filesink location=track1.wv + * gst-launch cdda://1 ! audioconvert ! wavpackenc ! filesink location=track1.wv * </programlisting> * This pipeline encodes audio from an audio CD into a Wavpack file using * lossless encoding (the file output will be fairly large). * </para> * <para> * <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> * 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). |