diff options
author | Clément Bœsch <u@pkh.me> | 2017-04-03 20:41:16 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-04-03 20:41:16 +0200 |
commit | 47d8410daca4aaf08bc886eb6d08e6fafe4fb6f1 (patch) | |
tree | ff3fb55fddf4f6fa20e02cf18b3a5f0db75685ef /libavresample | |
parent | ab827a8349f50a2596ef1e57b54b4436f936bf13 (diff) | |
parent | a1d9de304fe63614e3aa8117fef17491fa80093d (diff) | |
download | ffmpeg-streaming-47d8410daca4aaf08bc886eb6d08e6fafe4fb6f1.zip ffmpeg-streaming-47d8410daca4aaf08bc886eb6d08e6fafe4fb6f1.tar.gz |
Merge commit 'a1d9de304fe63614e3aa8117fef17491fa80093d'
* commit 'a1d9de304fe63614e3aa8117fef17491fa80093d':
Fix some mismatches between function parameter and doxygen parameter names.
Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavresample')
-rw-r--r-- | libavresample/avresample.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavresample/avresample.h b/libavresample/avresample.h index 4cfbdfc..193443e 100644 --- a/libavresample/avresample.h +++ b/libavresample/avresample.h @@ -490,8 +490,8 @@ int avresample_convert_frame(AVAudioResampleContext *avr, * @see avresample_close(); * * @param avr audio resample context - * @param output output AVFrame - * @param input input AVFrame + * @param out output AVFrame + * @param in input AVFrame * @return 0 on success, AVERROR on failure. */ int avresample_config(AVAudioResampleContext *avr, AVFrame *out, AVFrame *in); |