mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
tests/aggregator: Use correct type when setting property
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=741495
This commit is contained in:
parent
47d0efacf2
commit
d391c9cfed
1 changed files with 1 additions and 1 deletions
|
@ -585,7 +585,7 @@ _test_timeout (gint buffer_wait)
|
|||
"sizemax", 4, NULL);
|
||||
|
||||
agg = gst_check_setup_element ("testaggregator");
|
||||
g_object_set (agg, "timeout", 1000 /* 1 us */ , NULL);
|
||||
g_object_set (agg, "timeout", G_GINT64_CONSTANT (1000) /* 1 us */ , NULL);
|
||||
sink = gst_check_setup_element ("fakesink");
|
||||
g_object_set (sink, "signal-handoffs", TRUE, NULL);
|
||||
g_signal_connect (sink, "handoff", (GCallback) handoff, &count);
|
||||
|
|
Loading…
Reference in a new issue