mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
hlsenc: Don't duplicate a string constant
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
3193b13aa1
commit
4a9f7d2bf9
@ -219,7 +219,7 @@ static int hls_write_header(AVFormatContext *s)
|
||||
if (p)
|
||||
*p = '\0';
|
||||
|
||||
av_strlcat(hls->basename, "%d.ts", basename_size);
|
||||
av_strlcat(hls->basename, pattern, basename_size);
|
||||
|
||||
if ((ret = hls_mux_init(s)) < 0)
|
||||
goto fail;
|
||||
|
Loading…
Reference in New Issue
Block a user