mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-01 17:31:10 +00:00
qtdemux: Use G_GUINT64_CONSTANT
when creating test caps
Otherwise this fails on 32 bit platforms. Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3521 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6806>
This commit is contained in:
parent
5e4a76fdf1
commit
e933c7a7e3
1 changed files with 6 additions and 4 deletions
|
@ -1085,8 +1085,9 @@ GST_START_TEST (test_qtdemux_compensate_data_offset)
|
||||||
"channels", G_TYPE_INT, 2, "rate", G_TYPE_INT, 48000, NULL);
|
"channels", G_TYPE_INT, 2, "rate", G_TYPE_INT, 48000, NULL);
|
||||||
caps =
|
caps =
|
||||||
gst_caps_new_simple ("video/quicktime", "variant", G_TYPE_STRING,
|
gst_caps_new_simple ("video/quicktime", "variant", G_TYPE_STRING,
|
||||||
"mss-fragmented", "timescale", G_TYPE_UINT64, 10000000, "media-caps",
|
"mss-fragmented", "timescale", G_TYPE_UINT64,
|
||||||
GST_TYPE_CAPS, mediacaps, NULL);
|
G_GUINT64_CONSTANT (10000000), "media-caps", GST_TYPE_CAPS, mediacaps,
|
||||||
|
NULL);
|
||||||
|
|
||||||
/* Send segment event* */
|
/* Send segment event* */
|
||||||
event = gst_event_new_caps (caps);
|
event = gst_event_new_caps (caps);
|
||||||
|
@ -1165,8 +1166,9 @@ GST_START_TEST (test_qtdemux_mss_fragment)
|
||||||
"channels", G_TYPE_INT, 2, "rate", G_TYPE_INT, 48000, NULL);
|
"channels", G_TYPE_INT, 2, "rate", G_TYPE_INT, 48000, NULL);
|
||||||
caps =
|
caps =
|
||||||
gst_caps_new_simple ("video/quicktime", "variant", G_TYPE_STRING,
|
gst_caps_new_simple ("video/quicktime", "variant", G_TYPE_STRING,
|
||||||
"mss-fragmented", "timescale", G_TYPE_UINT64, 10000000, "media-caps",
|
"mss-fragmented", "timescale", G_TYPE_UINT64,
|
||||||
GST_TYPE_CAPS, mediacaps, NULL);
|
G_GUINT64_CONSTANT (10000000), "media-caps", GST_TYPE_CAPS, mediacaps,
|
||||||
|
NULL);
|
||||||
|
|
||||||
/* Send segment event* */
|
/* Send segment event* */
|
||||||
event = gst_event_new_caps (caps);
|
event = gst_event_new_caps (caps);
|
||||||
|
|
Loading…
Reference in a new issue