From: Stefano Sabatini Date: Mon, 14 Feb 2011 09:59:25 +0000 (+0100) Subject: Document audio_resample_close(). X-Git-Tag: v0.7b2~856 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=938b62538a719785bce0f1d49d3065937b29e3aa;p=coroid%2Flibav_saccubus.git Document audio_resample_close(). Signed-off-by: Janne Grunau --- diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 3cc212f7c..86519387a 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -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);