diff options
author | Limin Wang <lance.lmwang@gmail.com> | 2021-08-20 21:08:17 +0800 |
---|---|---|
committer | Limin Wang <lance.lmwang@gmail.com> | 2021-09-29 18:00:14 +0800 |
commit | 0f5e1877ba36feb876ec8eb0d0eb14114ebc9b3a (patch) | |
tree | 003c1533832c087b7f6e67366b4f394e8a33c77c /libavformat | |
parent | 4be3f6d2d2dc438351d382c5324511cc3b9ed6f4 (diff) | |
download | ffmpeg-0f5e1877ba36feb876ec8eb0d0eb14114ebc9b3a.tar.gz |
avformat/hlsenc: add const for filename argument
Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/hlsenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 7c37bc50b9..98608a834a 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -281,7 +281,7 @@ static int strftime_expand(const char *fmt, char **dest) return r; } -static int hlsenc_io_open(AVFormatContext *s, AVIOContext **pb, char *filename, +static int hlsenc_io_open(AVFormatContext *s, AVIOContext **pb, const char *filename, AVDictionary **options) { HLSContext *hls = s->priv_data; |