mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 09:08:14 +00:00
pad: Remove g_warning() if pad accepted caps that are not a subset of the pad caps
This check is correct but unfortunately it's impossible to implement in a threadsafe way because the caps could have changed in the meantime. Fixes bug #659606.
This commit is contained in:
parent
611ac6ea85
commit
0280a3c29f
1 changed files with 0 additions and 20 deletions
20
gst/gstpad.c
20
gst/gstpad.c
|
@ -2630,26 +2630,6 @@ gst_pad_accept_caps (GstPad * pad, GstCaps * caps)
|
|||
GST_DEBUG_OBJECT (pad, "default acceptcaps returned %d", result);
|
||||
}
|
||||
|
||||
#ifndef G_DISABLE_ASSERT
|
||||
if (result) {
|
||||
GstCaps *padcaps;
|
||||
|
||||
padcaps = gst_pad_get_caps_reffed (pad);
|
||||
if (!gst_caps_is_subset (caps, padcaps)) {
|
||||
gchar *padcaps_str, *caps_str;
|
||||
|
||||
padcaps_str = gst_caps_to_string (padcaps);
|
||||
caps_str = gst_caps_to_string (caps);
|
||||
g_warning ("pad %s:%s accepted caps %s although "
|
||||
"they are not a subset of its caps %s",
|
||||
GST_DEBUG_PAD_NAME (pad), caps_str, padcaps_str);
|
||||
g_free (padcaps_str);
|
||||
g_free (caps_str);
|
||||
}
|
||||
gst_caps_unref (padcaps);
|
||||
}
|
||||
#endif
|
||||
|
||||
return result;
|
||||
|
||||
is_same_caps:
|
||||
|
|
Loading…
Reference in a new issue