diff options
author | Thiago Santos <thiago.sousa.santos@collabora.com> | 2013-02-19 19:35:34 -0300 |
---|---|---|
committer | Thiago Santos <thiago.sousa.santos@collabora.com> | 2013-05-08 18:14:41 -0300 |
commit | cff4498f7cc557417452d5a06adf26787a30d795 (patch) | |
tree | e603324a3c8a9a2fdb9e963532a86d1bbf620e0b /ext/dash/gstmpdparser.h | |
parent | a53fd875086301977ebaaa976598405af372d6c8 (diff) | |
download | gstreamer-plugins-bad-cff4498f7cc557417452d5a06adf26787a30d795.tar.gz |
dash: mpdparser: use guint64 for timestamps
The timestamps can be pretty big, so use guint64 for them
Diffstat (limited to 'ext/dash/gstmpdparser.h')
-rw-r--r-- | ext/dash/gstmpdparser.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/dash/gstmpdparser.h b/ext/dash/gstmpdparser.h index e640a175f..b316b61bc 100644 --- a/ext/dash/gstmpdparser.h +++ b/ext/dash/gstmpdparser.h @@ -121,8 +121,8 @@ struct _GstConditionalUintType struct _GstSNode { - guint t; - guint d; + guint64 t; + guint64 d; guint r; }; @@ -412,7 +412,7 @@ struct _GstMediaSegment { GstSegmentURLNode *SegmentURL; /* this is NULL when using a SegmentTemplate */ guint number; /* segment number */ - guint start; /* segment start time in timescale units */ + guint64 start; /* segment start time in timescale units */ GstClockTime start_time; /* segment start time */ GstClockTime duration; /* segment duration */ }; |