From 20bc55ce5c01662a50bd9081914244b714294e84 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Mon, 14 Feb 2011 10:59:25 +0100 Subject: [PATCH] Document audio_resample_close(). Signed-off-by: Janne Grunau Signed-off-by: Michael Niedermayer --- libavcodec/avcodec.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 013f168580..4ca32b87cb 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -3268,10 +3268,10 @@ ReSampleContext *av_audio_resample_init(int output_channels, int input_channels, int audio_resample(ReSampleContext *s, short *output, short *input, int nb_samples); /** - * Free resample context s. + * Free resample context. * * @param s a non-NULL pointer to a resample context previously - * created with av_audio_resample_init() + * created with av_audio_resample_init() */ void audio_resample_close(ReSampleContext *s);