[FFmpeg-cvslog] avformat/dashdec: refine mpd element of attribute name availabilityEndTime

Steven Liu git at videolan.org
Wed Sep 5 09:35:58 EEST 2018


ffmpeg | branch: master | Steven Liu <lq at chinaffmpeg.org> | Wed Sep  5 14:13:56 2018 +0800| [f499679e17cc6c8dc4e1e4e906c325946e43ec92] | committer: Steven Liu

avformat/dashdec: refine mpd element of attribute name availabilityEndTime

Signed-off-by: Steven Liu <lq at onvideo.cn>

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

 libavformat/dashdec.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c
index 0435f25412..ad7e7d6cdb 100644
--- a/libavformat/dashdec.c
+++ b/libavformat/dashdec.c
@@ -132,6 +132,7 @@ typedef struct DASHContext {
     uint64_t media_presentation_duration;
     uint64_t suggested_presentation_delay;
     uint64_t availability_start_time;
+    uint64_t availability_end_time;
     uint64_t publish_time;
     uint64_t minimum_update_period;
     uint64_t time_shift_buffer_depth;
@@ -1191,6 +1192,8 @@ static int parse_manifest(AVFormatContext *s, const char *url, AVIOContext *in)
 
             if (!av_strcasecmp(attr->name, (const char *)"availabilityStartTime")) {
                 c->availability_start_time = get_utc_date_time_insec(s, (const char *)val);
+            } else if (!av_strcasecmp(attr->name, (const char *)"availabilityEndTime")) {
+                c->availability_end_time = get_utc_date_time_insec(s, (const char *)val);
             } else if (!av_strcasecmp(attr->name, (const char *)"publishTime")) {
                 c->publish_time = get_utc_date_time_insec(s, (const char *)val);
             } else if (!av_strcasecmp(attr->name, (const char *)"minimumUpdatePeriod")) {



More information about the ffmpeg-cvslog mailing list