From: Mark Nauwelaerts Date: Thu, 31 Mar 2011 12:03:11 +0000 (+0200) Subject: baseaudiodecoder: fixup documentation X-Git-Tag: 1.19.3~511^2~6555^2~569 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8b6109cdbeeca94721177636d42e512df1a26d48;p=platform%2Fupstream%2Fgstreamer.git baseaudiodecoder: fixup documentation --- diff --git a/gst-libs/gst/audio/gstbaseaudiodecoder.c b/gst-libs/gst/audio/gstbaseaudiodecoder.c index 86f3cc2..e80db14 100644 --- a/gst-libs/gst/audio/gstbaseaudiodecoder.c +++ b/gst-libs/gst/audio/gstbaseaudiodecoder.c @@ -34,20 +34,20 @@ * * Configuration * - * Initially, GstBaseAudioEncoder calls @start when the decoder element + * Initially, GstBaseAudioDecoder calls @start when the decoder element * is activated, which allows subclass to perform any global setup. * Base class context parameters can already be set according to subclass * capabilities (or possibly upon receive more information in subsequent * @set_format). * * - * GstBaseAudioEncoder calls @set_format to inform subclass of the format + * GstBaseAudioDecoder calls @set_format to inform subclass of the format * of input audio data that it is about to receive. * While unlikely, it might be called more than once, if changing input * parameters require reconfiguration. * * - * GstBaseAudioEncoder calls @stop at end of all processing. + * GstBaseAudioDecoder calls @stop at end of all processing. * * * @@ -82,7 +82,7 @@ * setting src pad caps. * * - * During the parsing process GstBaseAudioEncoderClass will handle both + * During the parsing process GstBaseAudioDecoderClass will handle both * srcpad and sinkpad events. Sink events will be passed to subclass * if @event callback has been provided. * @@ -91,7 +91,7 @@ * * Shutdown phase * - * GstBaseAudioEncoder class calls @stop to inform the subclass that data + * GstBaseAudioDecoder class calls @stop to inform the subclass that data * parsing will be stopped. * *