tests: rtpbasedepayload: fix crash in test when passing varargs

Need to pass 64 bits where 64 bits are expected.

https://bugzilla.gnome.org/show_bug.cgi?id=748027
This commit is contained in:
Hyunjun Ko 2015-04-17 16:21:05 +09:00 committed by Tim-Philipp Müller
parent e78d44ac0b
commit 5d90a28d5f

View file

@ -1101,7 +1101,7 @@ GST_START_TEST (rtp_base_depayload_clock_base_test)
push_rtp_buffer (state,
"pts", 1 * GST_SECOND,
"rtptime", 1234 + DEFAULT_CLOCK_RATE,
"rtptime", G_GUINT64_CONSTANT (1234) + 1 * DEFAULT_CLOCK_RATE,
"seq", 0x4242 + 1, NULL);
set_state (state, GST_STATE_NULL);