diff options
author | Marvin Scholz <epirat07@gmail.com> | 2022-09-15 02:42:58 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-10-17 09:51:47 +0200 |
commit | 1f0529ec5f545b24daefa0e2346d93a6a4d77f5f (patch) | |
tree | 1083f6f352a279b17bede5ff609d66fdbf52b7b7 /libavformat/avformat.h | |
parent | 7cf22df14ea93ab339073abaf8fa1b644241d4bb (diff) | |
download | ffmpeg-1f0529ec5f545b24daefa0e2346d93a6a4d77f5f.tar.gz |
avformat/avformat: Fix mismatching argument names
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 9d46875cce..c695cfc6de 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -2003,7 +2003,7 @@ AVProgram *av_new_program(AVFormatContext *s, int id); * avformat_free_context() can be used to free the context and * everything allocated by the framework within it. * - * @param *ctx is set to the created format context, or to NULL in + * @param ctx pointee is set to the created format context, or to NULL in * case of failure * @param oformat format to use for allocating the context, if NULL * format_name and filename are used instead @@ -2656,7 +2656,7 @@ const AVIndexEntry *avformat_index_get_entry(AVStream *st, int idx); * Get the AVIndexEntry corresponding to the given timestamp. * * @param st Stream containing the requested AVIndexEntry. - * @param timestamp Timestamp to retrieve the index entry for. + * @param wanted_timestamp Timestamp to retrieve the index entry for. * @param flags If AVSEEK_FLAG_BACKWARD then the returned entry will correspond * to the timestamp which is <= the requested one, if backward * is 0, then it will be >= |