mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
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>
This commit is contained in:
parent
63b5ae0ffe
commit
6faff99596
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue