diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-11-09 22:09:38 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-11-21 14:29:10 +0100 |
commit | a1d9de304fe63614e3aa8117fef17491fa80093d (patch) | |
tree | 41a82ff8f4b71800223a7fe0f66339bc9aa589c4 /libavresample | |
parent | 4d960a11855f4212eb3a4e470ce890db7f01df29 (diff) | |
download | ffmpeg-streaming-a1d9de304fe63614e3aa8117fef17491fa80093d.zip ffmpeg-streaming-a1d9de304fe63614e3aa8117fef17491fa80093d.tar.gz |
Fix some mismatches between function parameter and doxygen parameter names.
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 c66798c..3f9b943 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); |