summaryrefslogtreecommitdiff
path: root/libswresample
diff options
context:
space:
mode:
authorMarvin Scholz <epirat07@gmail.com>2022-09-15 02:44:08 +0200
committerAnton Khirnov <anton@khirnov.net>2022-10-17 09:51:47 +0200
commiteb60ffb144152ec5b6b3c7d78c31a2c99a1484f0 (patch)
tree33753849b10f1de8a0c771698b268e8b32242d32 /libswresample
parent3fbf8d6e1d4c5a4bcaa4d5ec64099e9b646c5603 (diff)
downloadffmpeg-eb60ffb144152ec5b6b3c7d78c31a2c99a1484f0.tar.gz
swresample/swresample: Fix mismatching argument names
Diffstat (limited to 'libswresample')
-rw-r--r--libswresample/swresample.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libswresample/swresample.h b/libswresample/swresample.h
index 980be65783..4c26468c63 100644
--- a/libswresample/swresample.h
+++ b/libswresample/swresample.h
@@ -354,8 +354,8 @@ int swr_convert(struct SwrContext *s, uint8_t **out, int out_count,
* in this case the output timestamps will match output sample numbers.
* See ffmpeg-resampler(1) for the two modes of compensation.
*
- * @param s[in] initialized Swr context
- * @param pts[in] timestamp for the next input sample, INT64_MIN if unknown
+ * @param[in] s initialized Swr context
+ * @param[in] pts timestamp for the next input sample, INT64_MIN if unknown
* @see swr_set_compensation(), swr_drop_output(), and swr_inject_silence() are
* function used internally for timestamp compensation.
* @return the output timestamp for the next output sample
@@ -636,8 +636,8 @@ int swr_convert_frame(SwrContext *swr,
* @see swr_close();
*
* @param swr 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 swr_config_frame(SwrContext *swr, const AVFrame *out, const AVFrame *in);