summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDoug Nazar <nazard@nazar.ca>2021-04-14 01:59:23 -0400
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2021-04-14 06:35:25 +0000
commit6faff99596a24c527dff9a1f4be16175c301ff47 (patch)
treef68962b839f914e25c847ed196277c6c35ebe4cd /tests
parent63b5ae0ffe20ed67dd4bebebb321779698d004ca (diff)
downloadgstreamer-plugins-bad-6faff99596a24c527dff9a1f4be16175c301ff47.tar.gz
check: fix dash_mpdparser_check_mpd_client_set_methods test.
Setting guint64 valist properties without type specifier fails on 32bit archs. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2161>
Diffstat (limited to 'tests')
-rw-r--r--tests/check/elements/dash_mpd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/check/elements/dash_mpd.c b/tests/check/elements/dash_mpd.c
index 21ce5e0d8..cc5596a08 100644
--- a/tests/check/elements/dash_mpd.c
+++ b/tests/check/elements/dash_mpd.c
@@ -6193,8 +6193,8 @@ GST_START_TEST (dash_mpdparser_check_mpd_client_set_methods)
"url", "TestBaseURL",
"service-location", "TestServiceLocation",
"byte-range", "TestByteRange", NULL);
- period_id = gst_mpd_client_set_period_node (second_mpdclient, (gchar *) "TestId", "start", 60000, // ms
- "duration", 40000, "bitstream-switching", 1, NULL);
+ period_id = gst_mpd_client_set_period_node (second_mpdclient, (gchar *) "TestId", "start", (guint64) 60000, // ms
+ "duration", (guint64) 40000, "bitstream-switching", 1, NULL);
adaptation_set_id =
gst_mpd_client_set_adaptation_set_node (second_mpdclient, period_id, 9,
"content-type", "video", "mime-type", "video", NULL);