ffmpeg | branch: master | James Almer <jamr...@gmail.com> | Sun Jan 19 18:11:08 
2020 -0300| [29be3de926e9d94b64de549fb12b7c57fe881cda] | committer: 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: James Almer <jamr...@gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=29be3de926e9d94b64de549fb12b7c57fe881cda
---

 libavformat/dashenc.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
index a7f35063a8..00fb23f9b0 100644
--- a/libavformat/dashenc.c
+++ b/libavformat/dashenc.c
@@ -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);

_______________________________________________
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to