Commit 938b6253 authored by Stefano Sabatini's avatar Stefano Sabatini Committed by Janne Grunau

Document audio_resample_close().

Signed-off-by: 's avatarJanne Grunau <janne-ffmpeg@jannau.net>
parent 54955283
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment