mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
decodebin2: add some debugging
This commit is contained in:
parent
8b4f6dd43b
commit
8266d201a0
1 changed files with 6 additions and 1 deletions
|
@ -2965,9 +2965,11 @@ gst_decode_bin_expose (GstDecodeBin * dbin)
|
|||
for (tmp = endpads; tmp; tmp = tmp->next) {
|
||||
GstDecodePad *dpad = tmp->data;
|
||||
|
||||
if (dpad->exposed)
|
||||
if (dpad->exposed) {
|
||||
GST_DEBUG_OBJECT (dpad, "blocking exposed pad");
|
||||
gst_decode_pad_set_blocked (dpad, TRUE);
|
||||
}
|
||||
}
|
||||
|
||||
/* re-order pads : video, then audio, then others */
|
||||
endpads = g_list_sort (endpads, (GCompareFunc) sort_end_pads);
|
||||
|
@ -3155,6 +3157,9 @@ gst_decode_pad_set_blocked (GstDecodePad * dpad, gboolean blocked)
|
|||
GstPad *opad;
|
||||
|
||||
DYN_LOCK (dbin);
|
||||
|
||||
GST_DEBUG_OBJECT (dpad, "blocking pad: %d", blocked);
|
||||
|
||||
opad = gst_ghost_pad_get_target (GST_GHOST_PAD_CAST (dpad));
|
||||
if (!opad)
|
||||
goto out;
|
||||
|
|
Loading…
Reference in a new issue