mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
v4l2bufferpool: Cleanup uneeded check and cases
There is nothing in between the break and the "done:" anymore, plus USERPTR and DMABUF_IMPORT case is exactly the same.
This commit is contained in:
parent
319efc3e20
commit
d328eea5f2
1 changed files with 2 additions and 9 deletions
|
@ -1188,20 +1188,13 @@ gst_v4l2_buffer_pool_acquire_buffer (GstBufferPool * bpool, GstBuffer ** buffer,
|
||||||
}
|
}
|
||||||
case GST_V4L2_IO_DMABUF:
|
case GST_V4L2_IO_DMABUF:
|
||||||
case GST_V4L2_IO_MMAP:
|
case GST_V4L2_IO_MMAP:
|
||||||
|
case GST_V4L2_IO_USERPTR:
|
||||||
|
case GST_V4L2_IO_DMABUF_IMPORT:
|
||||||
{
|
{
|
||||||
/* just dequeue a buffer, we basically use the queue of v4l2 as the
|
/* just dequeue a buffer, we basically use the queue of v4l2 as the
|
||||||
* storage for our buffers. This function does poll first so we can
|
* storage for our buffers. This function does poll first so we can
|
||||||
* interrupt it fine. */
|
* interrupt it fine. */
|
||||||
ret = gst_v4l2_buffer_pool_dqbuf (pool, buffer);
|
ret = gst_v4l2_buffer_pool_dqbuf (pool, buffer);
|
||||||
if (G_UNLIKELY (ret != GST_FLOW_OK))
|
|
||||||
goto done;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case GST_V4L2_IO_USERPTR:
|
|
||||||
case GST_V4L2_IO_DMABUF_IMPORT:
|
|
||||||
{
|
|
||||||
/* dequeue filled buffer */
|
|
||||||
ret = gst_v4l2_buffer_pool_dqbuf (pool, buffer);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in a new issue