Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2011-02-14 12:59:25 +0300
committerMichael Niedermayer <michaelni@gmx.at>2011-02-17 01:00:50 +0300
commit20bc55ce5c01662a50bd9081914244b714294e84 (patch)
tree9aaff9741d96128db46cf5d3f1e40066dfe5ae21 /libavcodec
parent438198e7952f61b81f7bbe318e706cc0517b00f7 (diff)
Document audio_resample_close().
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/avcodec.h4
1 files 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);