Commit f21457f8 authored by Steven Liu's avatar Steven Liu

avformat/hlsenc: fix hls fmp4 extention name bug

ticket-id: #6541
when use hls fmp4 muxer, the extention name is not .m4s, this
code can fix it.

Found-by: JohnPi
Signed-off-by: 's avatarSteven Liu <lq@onvideo.cn>
parent aff93e19
...@@ -147,6 +147,7 @@ typedef struct HLSContext { ...@@ -147,6 +147,7 @@ typedef struct HLSContext {
HLSSegment *old_segments; HLSSegment *old_segments;
char *basename; char *basename;
char *base_output_dirname;
char *vtt_basename; char *vtt_basename;
char *vtt_m3u8_name; char *vtt_m3u8_name;
char *baseurl; char *baseurl;
...@@ -584,7 +585,7 @@ static int hls_mux_init(AVFormatContext *s) ...@@ -584,7 +585,7 @@ static int hls_mux_init(AVFormatContext *s)
if (hls->segment_type == SEGMENT_TYPE_FMP4) { if (hls->segment_type == SEGMENT_TYPE_FMP4) {
hls->fmp4_init_mode = 1; hls->fmp4_init_mode = 1;
if ((ret = s->io_open(s, &oc->pb, hls->fmp4_init_filename, AVIO_FLAG_WRITE, NULL)) < 0) { if ((ret = s->io_open(s, &oc->pb, hls->base_output_dirname, AVIO_FLAG_WRITE, NULL)) < 0) {
av_log(s, AV_LOG_ERROR, "Failed to open segment '%s'\n", hls->fmp4_init_filename); av_log(s, AV_LOG_ERROR, "Failed to open segment '%s'\n", hls->fmp4_init_filename);
return ret; return ret;
} }
...@@ -1286,14 +1287,19 @@ fail: ...@@ -1286,14 +1287,19 @@ fail:
return err; return err;
} }
static const char * get_default_pattern_localtime_fmt(void) static const char * get_default_pattern_localtime_fmt(AVFormatContext *s)
{ {
char b[21]; char b[21];
time_t t = time(NULL); time_t t = time(NULL);
struct tm *p, tmbuf; struct tm *p, tmbuf;
HLSContext *hls = s->priv_data;
p = localtime_r(&t, &tmbuf); p = localtime_r(&t, &tmbuf);
// no %s support when strftime returned error or left format string unchanged // no %s support when strftime returned error or left format string unchanged
// also no %s support on MSVC, which invokes the invalid parameter handler on unsupported format strings, instead of returning an error // also no %s support on MSVC, which invokes the invalid parameter handler on unsupported format strings, instead of returning an error
if (hls->segment_type == SEGMENT_TYPE_FMP4) {
return (HAVE_LIBC_MSVCRT || !strftime(b, sizeof(b), "%s", p) || !strcmp(b, "%s")) ? "-%Y%m%d%H%M%S.m4s" : "-%s.m4s";
}
return (HAVE_LIBC_MSVCRT || !strftime(b, sizeof(b), "%s", p) || !strcmp(b, "%s")) ? "-%Y%m%d%H%M%S.ts" : "-%s.ts"; return (HAVE_LIBC_MSVCRT || !strftime(b, sizeof(b), "%s", p) || !strcmp(b, "%s")) ? "-%Y%m%d%H%M%S.ts" : "-%s.ts";
} }
...@@ -1303,17 +1309,20 @@ static int hls_write_header(AVFormatContext *s) ...@@ -1303,17 +1309,20 @@ static int hls_write_header(AVFormatContext *s)
int ret, i; int ret, i;
char *p; char *p;
const char *pattern = "%d.ts"; const char *pattern = "%d.ts";
const char *pattern_localtime_fmt = get_default_pattern_localtime_fmt(); const char *pattern_localtime_fmt = get_default_pattern_localtime_fmt(s);
const char *vtt_pattern = "%d.vtt"; const char *vtt_pattern = "%d.vtt";
AVDictionary *options = NULL; AVDictionary *options = NULL;
int byterange_mode = (hls->flags & HLS_SINGLE_FILE) || (hls->max_seg_size > 0); int byterange_mode = (hls->flags & HLS_SINGLE_FILE) || (hls->max_seg_size > 0);
int basename_size; int basename_size;
int vtt_basename_size; int vtt_basename_size;
if (hls->segment_type == SEGMENT_TYPE_FMP4 && byterange_mode) { if (hls->segment_type == SEGMENT_TYPE_FMP4) {
if (byterange_mode) {
av_log(s, AV_LOG_WARNING, "Have not support fmp4 byterange mode yet now\n"); av_log(s, AV_LOG_WARNING, "Have not support fmp4 byterange mode yet now\n");
return AVERROR_PATCHWELCOME; return AVERROR_PATCHWELCOME;
} }
pattern = "%d.m4s";
}
if ((hls->start_sequence_source_type == HLS_START_SEQUENCE_AS_SECONDS_SINCE_EPOCH) || if ((hls->start_sequence_source_type == HLS_START_SEQUENCE_AS_SECONDS_SINCE_EPOCH) ||
(hls->start_sequence_source_type == HLS_START_SEQUENCE_AS_FORMATTED_DATETIME)) { (hls->start_sequence_source_type == HLS_START_SEQUENCE_AS_FORMATTED_DATETIME)) {
time_t t = time(NULL); // we will need it in either case time_t t = time(NULL); // we will need it in either case
...@@ -1412,6 +1421,31 @@ static int hls_write_header(AVFormatContext *s) ...@@ -1412,6 +1421,31 @@ static int hls_write_header(AVFormatContext *s)
} else { } else {
av_strlcat(hls->basename, pattern, basename_size); av_strlcat(hls->basename, pattern, basename_size);
} }
if (av_strcasecmp(hls->fmp4_init_filename, "init.mp4")) {
int fmp4_init_filename_len = strlen(hls->fmp4_init_filename) + 1;
hls->base_output_dirname = av_malloc(fmp4_init_filename_len);
if (!hls->base_output_dirname) {
ret = AVERROR(ENOMEM);
goto fail;
}
av_strlcpy(hls->base_output_dirname, hls->fmp4_init_filename, fmp4_init_filename_len);
} else {
hls->base_output_dirname = av_malloc(basename_size);
if (!hls->base_output_dirname) {
ret = AVERROR(ENOMEM);
goto fail;
}
av_strlcpy(hls->base_output_dirname, s->filename, basename_size);
p = strrchr(hls->base_output_dirname, '/');
if (p) {
*(p + 1) = '\0';
av_strlcat(hls->base_output_dirname, hls->fmp4_init_filename, basename_size);
} else {
av_strlcpy(hls->base_output_dirname, hls->fmp4_init_filename, basename_size);
}
}
} }
if (!hls->use_localtime) { if (!hls->use_localtime) {
ret = sls_flag_check_duration_size_index(hls); ret = sls_flag_check_duration_size_index(hls);
...@@ -1686,6 +1720,7 @@ static int hls_write_trailer(struct AVFormatContext *s) ...@@ -1686,6 +1720,7 @@ static int hls_write_trailer(struct AVFormatContext *s)
ff_format_io_close(s, &vtt_oc->pb); ff_format_io_close(s, &vtt_oc->pb);
} }
av_freep(&hls->basename); av_freep(&hls->basename);
av_freep(&hls->base_output_dirname);
av_freep(&hls->key_basename); av_freep(&hls->key_basename);
avformat_free_context(oc); avformat_free_context(oc);
......
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