summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2015-09-03 10:26:03 +0300
committerSebastian Dröge <sebastian@centricular.com>2015-09-14 19:53:18 +0200
commitd9c45e918fd70cfbb2dea076c0320f1b69146c3a (patch)
tree303a43bf82e70ad4b5ad966c2867a21d69c3b87b
parent0d0455e346438c6bf3bc68c3510587016f1a5bdc (diff)
downloadgstreamer-plugins-bad-d9c45e918fd70cfbb2dea076c0320f1b69146c3a.tar.gz
mpdparser: Fix unit test that assumed that fragment timestamps should include the period start timestamp
https://bugzilla.gnome.org/show_bug.cgi?id=754222
-rw-r--r--tests/check/elements/dash_mpd.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/check/elements/dash_mpd.c b/tests/check/elements/dash_mpd.c
index a076d3d14..4a5277586 100644
--- a/tests/check/elements/dash_mpd.c
+++ b/tests/check/elements/dash_mpd.c
@@ -4082,7 +4082,14 @@ GST_START_TEST (dash_mpdparser_segment_template)
* We expect it to not be limited to period duration.
*/
expectedDuration = duration_to_ms (0, 0, 0, 0, 0, 12000, 0);
- expectedTimestamp = duration_to_ms (0, 0, 0, 0, 0, 10, 0);
+
+ /* while the period starts at 10ms, the fragment timestamp is supposed to be
+ * 0ms. timestamps are starting from 0 at every period, and only the overall
+ * composition of periods should consider the period start timestamp. In
+ * dashdemux this is done by mapping the 0 fragment timestamp to a stream
+ * time equal to the period start time.
+ */
+ expectedTimestamp = duration_to_ms (0, 0, 0, 0, 0, 0, 0);
ret = gst_mpd_client_get_next_fragment (mpdclient, 0, &fragment);
assert_equals_int (ret, TRUE);