mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-06 16:19:59 +00:00
v4l2bufferpool: Only queue buffer if preparation worked
The preparation code imports the buffer, doing bunch of validation. Only queue the buffer in the driver if the importation worked. This way we don't rely on the driver to validate. https://bugzilla.gnome.org/show_bug.cgi?id=583890
This commit is contained in:
parent
24368c1162
commit
77c052f0e8
1 changed files with 5 additions and 2 deletions
|
@ -1414,11 +1414,14 @@ gst_v4l2_buffer_pool_release_buffer (GstBufferPool * bpool, GstBuffer * buffer)
|
|||
{
|
||||
GstV4l2MemoryGroup *group;
|
||||
if (gst_v4l2_is_buffer_valid (buffer, &group)) {
|
||||
GstFlowReturn ret = GST_FLOW_OK;
|
||||
|
||||
gst_v4l2_allocator_reset_group (pool->vallocator, group);
|
||||
/* queue back in the device */
|
||||
if (pool->other_pool)
|
||||
gst_v4l2_buffer_pool_prepare_buffer (pool, buffer, NULL);
|
||||
if (gst_v4l2_buffer_pool_qbuf (pool, buffer, group) != GST_FLOW_OK)
|
||||
ret = gst_v4l2_buffer_pool_prepare_buffer (pool, buffer, NULL);
|
||||
if (ret != GST_FLOW_OK ||
|
||||
gst_v4l2_buffer_pool_qbuf (pool, buffer, group) != GST_FLOW_OK)
|
||||
pclass->release_buffer (bpool, buffer);
|
||||
} else {
|
||||
/* Simply release invalide/modified buffer, the allocator will
|
||||
|
|
Loading…
Reference in a new issue