Commit 29be3de9 authored by James Almer's avatar James Almer

avformat/dashenc: include an availabilityTimeComplete element in all streaming modes

It's not exclusive for Low Latency streaming. The muxer will serve partial
segments regardless of streaming mode.
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent d2a33f66
......@@ -662,8 +662,7 @@ static void output_segment_list(OutputStream *os, AVIOContext *out, AVFormatCont
avio_printf(out, "availabilityTimeOffset=\"%.3f\" ",
os->availability_time_offset);
}
if (c->ldash && !final && os->frag_type != FRAG_TYPE_NONE &&
(os->frag_type != FRAG_TYPE_DURATION || os->frag_duration != os->seg_duration))
if (c->streaming && os->availability_time_offset && !final)
avio_printf(out, "availabilityTimeComplete=\"false\" ");
avio_printf(out, "initialization=\"%s\" media=\"%s\" startNumber=\"%d\"", os->init_seg_name, os->media_seg_name, c->use_timeline ? start_number : 1);
......
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