mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-03 22:59:56 +00:00
v4l2: fill out v4l2_buffer.bytesused field for v4l2sink
When queuing a buffer for a sink, bytesused must contain the actual amount of data. For a source, the driver must overwrite this, so it doesn't matter what is set here. https://bugzilla.gnome.org/show_bug.cgi?id=699598
This commit is contained in:
parent
9532b04947
commit
59d7d5c6bb
1 changed files with 5 additions and 2 deletions
|
@ -645,9 +645,12 @@ gst_v4l2_buffer_pool_qbuf (GstV4l2BufferPool * pool, GstBuffer * buf)
|
|||
}
|
||||
|
||||
index = meta->vbuffer.index;
|
||||
meta->vbuffer.bytesused = gst_buffer_get_size (buf);
|
||||
|
||||
GST_LOG_OBJECT (pool, "enqueue buffer %p, index:%d, queued:%d, flags:%08x",
|
||||
buf, index, pool->num_queued, meta->vbuffer.flags);
|
||||
GST_LOG_OBJECT (pool,
|
||||
"enqueue buffer %p, index:%d, queued:%d, flags:%08x used:%d",
|
||||
buf, index, pool->num_queued, meta->vbuffer.flags,
|
||||
meta->vbuffer.bytesused);
|
||||
|
||||
if (pool->buffers[index] != NULL)
|
||||
goto already_queued;
|
||||
|
|
Loading…
Reference in a new issue