diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 3cc212f7cd7f0e0b38df37d31a9b20ba322980ce..86519387a91d9c5a573879dd5ba7f71acc289e2b 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -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);