Commit c52beb48 authored by Steven Liu's avatar Steven Liu

avformat/hlsenc: check hls segment mode for ignore the init filename

ignore the fmp4_init_filename when in normal hls segment mode
Signed-off-by: 's avatarSteven Liu <lq@onvideo.cn>
parent d5995c53
...@@ -1443,6 +1443,7 @@ static int hls_write_header(AVFormatContext *s) ...@@ -1443,6 +1443,7 @@ static int hls_write_header(AVFormatContext *s)
} }
} }
if (hls->segment_type == SEGMENT_TYPE_FMP4) {
if (av_strcasecmp(hls->fmp4_init_filename, "init.mp4")) { if (av_strcasecmp(hls->fmp4_init_filename, "init.mp4")) {
hls->base_output_dirname = av_malloc(fmp4_init_filename_len); hls->base_output_dirname = av_malloc(fmp4_init_filename_len);
if (!hls->base_output_dirname) { if (!hls->base_output_dirname) {
...@@ -1472,6 +1473,7 @@ static int hls_write_header(AVFormatContext *s) ...@@ -1472,6 +1473,7 @@ static int hls_write_header(AVFormatContext *s)
av_strlcpy(hls->base_output_dirname, hls->fmp4_init_filename, fmp4_init_filename_len); av_strlcpy(hls->base_output_dirname, hls->fmp4_init_filename, fmp4_init_filename_len);
} }
} }
}
if (!hls->use_localtime) { if (!hls->use_localtime) {
ret = sls_flag_check_duration_size_index(hls); ret = sls_flag_check_duration_size_index(hls);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment