From: Sebastian Dröge Date: Sun, 20 May 2007 21:31:58 +0000 (+0000) Subject: ext/wavpack/gstwavpackenc.c: Add missing audioconverts in the example pipelines of... X-Git-Tag: RELEASE-0_10_6~70 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d6a28f9ea13ec99c660502717c3efca958d0caf7;p=platform%2Fupstream%2Fgst-plugins-good.git 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. --- diff --git a/ext/wavpack/gstwavpackenc.c b/ext/wavpack/gstwavpackenc.c index c1d2596..beb3fb6 100644 --- a/ext/wavpack/gstwavpackenc.c +++ b/ext/wavpack/gstwavpackenc.c @@ -29,20 +29,20 @@ * Example launch line * * - * gst-launch audiotestsrc num-buffers=500 ! wavpackenc ! filesink location=sinewave.wv + * gst-launch audiotestsrc num-buffers=500 ! audioconvert ! wavpackenc ! filesink location=sinewave.wv * * This pipeline encodes audio from audiotestsrc into a Wavpack file. * * * - * gst-launch cdda://1 ! wavpackenc ! filesink location=track1.wv + * gst-launch cdda://1 ! audioconvert ! wavpackenc ! filesink location=track1.wv * * This pipeline encodes audio from an audio CD into a Wavpack file using * lossless encoding (the file output will be fairly large). * * * - * gst-launch cdda://1 ! wavpackenc bitrate=128000 ! filesink location=track1.wv + * gst-launch cdda://1 ! audioconvert ! wavpackenc bitrate=128000 ! filesink location=track1.wv * * 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).