[FFmpeg-devel] [PATCH] lavf/hlsenc: reuse pattern string, rather than redefining it

Stefano Sabatini stefasab at gmail.com
Fri Dec 21 00:30:04 CET 2012


Improve robustness.
---
 libavformat/hlsenc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index 07aa4ff..55074c7 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -215,7 +215,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;
-- 
1.7.9.5



More information about the ffmpeg-devel mailing list