[FFmpeg-cvslog] Document audio_resample_close().
Stefano Sabatini
git
Mon Feb 14 13:06:16 CET 2011
ffmpeg | branch: master | Stefano Sabatini <stefano.sabatini-lala at poste.it> | Mon Feb 14 10:59:25 2011 +0100| [7562101a9f666f31b443c015dff545eedaeb1542] | committer: Michael Niedermayer
Document audio_resample_close().
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7562101a9f666f31b443c015dff545eedaeb1542
---
libavcodec/avcodec.h | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index ecea510..c85bd84 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -3257,6 +3257,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 s.
+ *
+ * @param s a non-NULL pointer to a resample context previously
+ * created with av_audio_resample_init()
+ */
void audio_resample_close(ReSampleContext *s);
More information about the ffmpeg-cvslog
mailing list