mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-06 14:32:31 +00:00
oggmux: Don't handle GstCollectData as GstObject, use the pad instead
This commit is contained in:
parent
dc87e8698e
commit
461d9f2f2c
1 changed files with 3 additions and 3 deletions
|
@ -1068,10 +1068,10 @@ gst_ogg_mux_send_headers (GstOggMux * mux)
|
||||||
gst_buffer_ref (buf);
|
gst_buffer_ref (buf);
|
||||||
} else {
|
} else {
|
||||||
/* fixme -- should be caught in the previous list traversal. */
|
/* fixme -- should be caught in the previous list traversal. */
|
||||||
GST_OBJECT_LOCK (pad);
|
GST_OBJECT_LOCK (thepad);
|
||||||
g_critical ("No headers or buffers on pad %s:%s",
|
g_critical ("No headers or buffers on pad %s:%s",
|
||||||
GST_DEBUG_PAD_NAME (pad));
|
GST_DEBUG_PAD_NAME (thepad));
|
||||||
GST_OBJECT_UNLOCK (pad);
|
GST_OBJECT_UNLOCK (thepad);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue