This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
hlsenc: Don't duplicate a string constant
Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n1.1
Martin Storsjö
12 years ago
parent
3193b13aa1
commit
4a9f7d2bf9
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/hlsenc.c
+ 1
- 1
libavformat/hlsenc.c
View File
@@ -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;
Write
Preview
Loading…
Cancel
Save