mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
basesink: handle lists correctly
This commit is contained in:
parent
a1d7bd02e4
commit
acf0d50bf1
1 changed files with 1 additions and 1 deletions
|
@ -3323,7 +3323,7 @@ gst_base_sink_chain_list (GstPad * pad, GstObject * parent,
|
|||
|
||||
result = GST_FLOW_OK;
|
||||
for (i = 0; i < len; i++) {
|
||||
buffer = gst_buffer_list_get (list, 0);
|
||||
buffer = gst_buffer_list_get (list, i);
|
||||
result = gst_base_sink_chain_main (basesink, pad,
|
||||
gst_buffer_ref (buffer));
|
||||
if (result != GST_FLOW_OK)
|
||||
|
|
Loading…
Reference in a new issue