mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +00:00
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:
parent
e78d44ac0b
commit
5d90a28d5f
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue