mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit 'c5e7ea13d2d4da0c5da91973a547afff6fe9e011'
* commit 'c5e7ea13d2d4da0c5da91973a547afff6fe9e011': dashenc: Use delay_moov Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
983778f1f6
|
@ -628,7 +628,7 @@ static int dash_write_header(AVFormatContext *s)
|
||||||
goto fail;
|
goto fail;
|
||||||
os->init_start_pos = 0;
|
os->init_start_pos = 0;
|
||||||
|
|
||||||
av_dict_set(&opts, "movflags", "frag_custom+dash", 0);
|
av_dict_set(&opts, "movflags", "frag_custom+dash+delay_moov", 0);
|
||||||
if ((ret = avformat_write_header(ctx, &opts)) < 0) {
|
if ((ret = avformat_write_header(ctx, &opts)) < 0) {
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
@ -636,13 +636,7 @@ static int dash_write_header(AVFormatContext *s)
|
||||||
avio_flush(ctx->pb);
|
avio_flush(ctx->pb);
|
||||||
av_dict_free(&opts);
|
av_dict_free(&opts);
|
||||||
|
|
||||||
if (c->single_file) {
|
av_log(s, AV_LOG_VERBOSE, "Representation %d init segment will be written to: %s\n", i, filename);
|
||||||
os->init_range_length = avio_tell(ctx->pb);
|
|
||||||
} else {
|
|
||||||
ffurl_close(os->out);
|
|
||||||
os->out = NULL;
|
|
||||||
}
|
|
||||||
av_log(s, AV_LOG_VERBOSE, "Representation %d init segment written to: %s\n", i, filename);
|
|
||||||
|
|
||||||
s->streams[i]->time_base = st->time_base;
|
s->streams[i]->time_base = st->time_base;
|
||||||
// If the muxer wants to shift timestamps, request to have them shifted
|
// If the muxer wants to shift timestamps, request to have them shifted
|
||||||
|
@ -748,7 +742,7 @@ static int dash_flush(AVFormatContext *s, int final, int stream)
|
||||||
for (i = 0; i < s->nb_streams; i++) {
|
for (i = 0; i < s->nb_streams; i++) {
|
||||||
OutputStream *os = &c->streams[i];
|
OutputStream *os = &c->streams[i];
|
||||||
char filename[1024] = "", full_path[1024], temp_path[1024];
|
char filename[1024] = "", full_path[1024], temp_path[1024];
|
||||||
int64_t start_pos = avio_tell(os->ctx->pb);
|
int64_t start_pos;
|
||||||
int range_length, index_length = 0;
|
int range_length, index_length = 0;
|
||||||
|
|
||||||
if (!os->packets_written)
|
if (!os->packets_written)
|
||||||
|
@ -766,6 +760,17 @@ static int dash_flush(AVFormatContext *s, int final, int stream)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!os->init_range_length) {
|
||||||
|
av_write_frame(os->ctx, NULL);
|
||||||
|
os->init_range_length = avio_tell(os->ctx->pb);
|
||||||
|
if (!c->single_file) {
|
||||||
|
ffurl_close(os->out);
|
||||||
|
os->out = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
start_pos = avio_tell(os->ctx->pb);
|
||||||
|
|
||||||
if (!c->single_file) {
|
if (!c->single_file) {
|
||||||
dash_fill_tmpl_params(filename, sizeof(filename), c->media_seg_name, i, os->segment_index, os->bit_rate, os->start_dts);
|
dash_fill_tmpl_params(filename, sizeof(filename), c->media_seg_name, i, os->segment_index, os->bit_rate, os->start_dts);
|
||||||
snprintf(full_path, sizeof(full_path), "%s%s", c->dirname, filename);
|
snprintf(full_path, sizeof(full_path), "%s%s", c->dirname, filename);
|
||||||
|
|
Loading…
Reference in New Issue