Module: ffmpeg Branch: master Commit: 938b62538a719785bce0f1d49d3065937b29e3aa
Author: Stefano Sabatini <[email protected]> Date: Mon Feb 14 10:59:25 2011 +0100 Document audio_resample_close(). Signed-off-by: Janne Grunau <[email protected]> --- libavcodec/avcodec.h | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 3cc212f..8651938 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); _______________________________________________ ffmpeg-commits mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-commits
