diff options
author | Måns Rullgård <mans@mansr.com> | 2010-06-30 20:09:37 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-06-30 20:09:37 +0000 |
commit | 1782460b387258b1872fcb7c40edcab9a2e63bcb (patch) | |
tree | 1906fb399798e1740eb5d2ab51c716b00f019881 /libavcodec | |
parent | ffd31cfef330f4f10a617b11f479d448dc632ff3 (diff) | |
download | ffmpeg-streaming-1782460b387258b1872fcb7c40edcab9a2e63bcb.zip ffmpeg-streaming-1782460b387258b1872fcb7c40edcab9a2e63bcb.tar.gz |
Improve av_resample() documentation
Originally committed as revision 23906 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 8aaed2c..2eb2ff6 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2989,7 +2989,7 @@ void audio_resample_close(ReSampleContext *s); struct AVResampleContext *av_resample_init(int out_rate, int in_rate, int filter_length, int log2_phase_count, int linear, double cutoff); /** - * resamples. + * Resample an array of samples using a previously configured context. * @param src an array of unconsumed samples * @param consumed the number of samples of src which have been consumed are returned here * @param src_size the number of unconsumed samples available |