diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-12-07 10:54:33 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-12-09 11:32:13 +0100 |
commit | 408b974796c55a3a2ca0bba2c3ac473e0bdfcd3f (patch) | |
tree | 14779b78a6756f34a6f675d3408f844fc0469080 /libavformat/internal.h | |
parent | a33e0ed11e72c9463dcfee240aa7cf5c2a57b102 (diff) | |
download | ffmpeg-408b974796c55a3a2ca0bba2c3ac473e0bdfcd3f.tar.gz |
avformat/utils: Add const where appropriate
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r-- | libavformat/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h index f43e408548..878c4f1164 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -630,7 +630,7 @@ void ff_parse_key_value(const char *str, ff_parse_key_val_cb callback_get_buf, * Find stream index based on format-specific stream ID * @return stream index, or < 0 on error */ -int ff_find_stream_index(AVFormatContext *s, int id); +int ff_find_stream_index(const AVFormatContext *s, int id); /** * Internal version of av_index_search_timestamp |