oggmux: Don't handle GstCollectData as GstObject, use the pad instead

This commit is contained in:
Sebastian Dröge 2011-02-24 16:22:53 +01:00
parent dc87e8698e
commit 461d9f2f2c

View file

@ -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;
} }