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)
committerMichael Niedermayer <michaelni@gmx.at>
Mon, 14 Feb 2011 11:50:14 +0000 (12:50 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/avcodec.h

index ecea510..c85bd84 100644 (file)
@@ -3257,6 +3257,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 s.
+ *
+ * @param s a non-NULL pointer to a resample context previously
+ * created with av_audio_resample_init()
+ */
 void audio_resample_close(ReSampleContext *s);