From 9e12fb56750ce12493f5835161b93d41a723e594 Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Thu, 17 Sep 2009 09:43:37 +0300 Subject: [PATCH] docs: fix example and mention difference to vorbisdec --- ext/ivorbis/vorbisdec.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ext/ivorbis/vorbisdec.c b/ext/ivorbis/vorbisdec.c index 4502a7731b..54449dff16 100644 --- a/ext/ivorbis/vorbisdec.c +++ b/ext/ivorbis/vorbisdec.c @@ -27,12 +27,13 @@ * This element decodes a Vorbis stream to raw int audio. * Vorbis is a royalty-free * audio codec maintained by the Xiph.org - * Foundation. + * Foundation. The decoder uses integer math to be more suitable for + * embedded devices. * * * Example pipelines * |[ - * gst-launch -v filesrc location=sine.ogg ! oggdemux ! vorbisdec ! audioconvert ! alsasink + * gst-launch -v filesrc location=sine.ogg ! oggdemux ! ivorbisdec ! audioconvert ! alsasink * ]| Decode an Ogg/Vorbis. To create an Ogg/Vorbis file refer to the * documentation of vorbisenc. *