mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-05 15:49:54 +00:00
chopmydata: don't push buffers smaller than min-size on eos
When pushing the remaining data on EOS, don't just push whatever data is left in the adapter, but only push data that's at least of min-size.
This commit is contained in:
parent
65f481ca63
commit
6c361963b1
1 changed files with 9 additions and 3 deletions
|
@ -300,9 +300,15 @@ gst_chop_my_data_process (GstChopMyData * chopmydata, gboolean flush)
|
|||
}
|
||||
|
||||
if (flush) {
|
||||
buffer = gst_adapter_take_buffer (chopmydata->adapter,
|
||||
gst_adapter_available (chopmydata->adapter));
|
||||
ret = gst_pad_push (chopmydata->srcpad, buffer);
|
||||
guint min_size = chopmydata->min_size;
|
||||
|
||||
while (gst_adapter_available (chopmydata->adapter) >= min_size) {
|
||||
buffer = gst_adapter_take_buffer (chopmydata->adapter, min_size);
|
||||
ret = gst_pad_push (chopmydata->srcpad, buffer);
|
||||
if (ret != GST_FLOW_OK)
|
||||
break;
|
||||
}
|
||||
gst_adapter_clear (chopmydata->adapter);
|
||||
}
|
||||
|
||||
return ret;
|
||||
|
|
Loading…
Reference in a new issue