OSDN Git Service

Document audio_resample_close().
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Mon, 14 Feb 2011 09:59:25 +0000 (10:59 +0100)
committerJanne Grunau <janne-ffmpeg@jannau.net>
Wed, 16 Feb 2011 09:34:09 +0000 (10:34 +0100)
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
libavcodec/avcodec.h

index 3cc212f..8651938 100644 (file)
@@ -3247,6 +3247,13 @@ ReSampleContext *av_audio_resample_init(int output_channels, int input_channels,
                                         int linear, double cutoff);
 
 int audio_resample(ReSampleContext *s, short *output, short *input, int nb_samples);
+
+/**
+ * Free resample context.
+ *
+ * @param s a non-NULL pointer to a resample context previously
+ *          created with av_audio_resample_init()
+ */
 void audio_resample_close(ReSampleContext *s);