mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
multiudpsink: Initialize bytes_sent field.
This fixes endpoints not receiving any data intermittently. https://bugzilla.gnome.org/show_bug.cgi?id=769773
This commit is contained in:
parent
4dff74358e
commit
578e93cd0b
1 changed files with 1 additions and 0 deletions
|
@ -818,6 +818,7 @@ gst_multiudpsink_render_buffers (GstMultiUDPSink * sink, GstBuffer ** buffers,
|
|||
msgs[i].vectors = &vecs[mem];
|
||||
msgs[i].num_vectors = mem_nums[i];
|
||||
msgs[i].num_control_messages = 0;
|
||||
msgs[i].bytes_sent = 0;
|
||||
msgs[i].control_messages = NULL;
|
||||
msgs[i].address = clients[0]->addr;
|
||||
mem += mem_nums[i];
|
||||
|
|
Loading…
Reference in a new issue