mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-03 09:01:54 -05:00
gst: Fix logging in buffer_recycle()
The first argument should be a GObject. GstMiniObjects are not GObject.
This commit is contained in:
parent
1f0934862a
commit
8b5601947c
1 changed files with 1 additions and 1 deletions
|
|
@ -407,7 +407,7 @@ buffer_recycle (GstMiniObject *obj)
|
||||||
src = data->owner;
|
src = data->owner;
|
||||||
data->queued = TRUE;
|
data->queued = TRUE;
|
||||||
|
|
||||||
GST_LOG_OBJECT (obj, "recycle buffer");
|
GST_LOG_OBJECT (src, "recycle buffer %p", obj);
|
||||||
pw_thread_loop_lock (src->core->loop);
|
pw_thread_loop_lock (src->core->loop);
|
||||||
if (src->stream)
|
if (src->stream)
|
||||||
pw_stream_queue_buffer (src->stream, data->b);
|
pw_stream_queue_buffer (src->stream, data->b);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue