mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 18:35:35 +00:00
v4l2bufferpool: Fix debug trace
The tracing of the buffer pointer was done on the secondary pointer, which does not match with other traces of the same buffer. This made the trace confusing and less useful. Fixes #1379 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2898>
This commit is contained in:
parent
aaa75d022a
commit
29910e233a
1 changed files with 1 additions and 1 deletions
|
@ -1959,7 +1959,7 @@ gst_v4l2_buffer_pool_process (GstV4l2BufferPool * pool, GstBuffer ** buf,
|
|||
GstBufferPool *bpool = GST_BUFFER_POOL_CAST (pool);
|
||||
GstV4l2Object *obj = pool->obj;
|
||||
|
||||
GST_DEBUG_OBJECT (pool, "process buffer %p", buf);
|
||||
GST_DEBUG_OBJECT (pool, "process buffer %p", *buf);
|
||||
|
||||
if (GST_BUFFER_POOL_IS_FLUSHING (pool))
|
||||
return GST_FLOW_FLUSHING;
|
||||
|
|
Loading…
Reference in a new issue