diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-02-14 10:59:25 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-02-16 23:00:50 +0100 |
commit | 20bc55ce5c01662a50bd9081914244b714294e84 (patch) | |
tree | 9aaff9741d96128db46cf5d3f1e40066dfe5ae21 /libavcodec/avcodec.h | |
parent | 438198e7952f61b81f7bbe318e706cc0517b00f7 (diff) | |
download | ffmpeg-20bc55ce5c01662a50bd9081914244b714294e84.tar.gz |
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/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
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); |