mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 13:06:23 +00:00
multifdsink: Make sure to use a 64 bit integer for the units-max property
This commit is contained in:
parent
6b5617c2a7
commit
5e2e111627
1 changed files with 1 additions and 1 deletions
|
@ -869,7 +869,7 @@ GST_START_TEST (test_client_kick)
|
|||
gint i, initial_buffers = 3, num_buffers = 0;
|
||||
|
||||
sink = setup_multifdsink ();
|
||||
g_object_set (sink, "units-max", initial_buffers, NULL);
|
||||
g_object_set (sink, "units-max", (gint64) initial_buffers, NULL);
|
||||
|
||||
fail_if (pipe (pfd1) == -1);
|
||||
fail_if (pipe (pfd2) == -1);
|
||||
|
|
Loading…
Reference in a new issue