Document audio_resample_close().

Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
This commit is contained in:
Stefano Sabatini 2011-02-14 10:59:25 +01:00 committed by Janne Grunau
parent 5495528365
commit 938b62538a
1 changed files with 7 additions and 0 deletions

View File

@ -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);