mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
discoverer: Update for the new gst_pad_get_caps() signature
This commit is contained in:
parent
8598775951
commit
2987ad9358
1 changed files with 2 additions and 2 deletions
|
@ -468,7 +468,7 @@ uridecodebin_pad_added_cb (GstElement * uridecodebin, GstPad * pad,
|
|||
g_object_set (ps->sink, "silent", TRUE, NULL);
|
||||
g_object_set (ps->queue, "max-size-buffers", 1, "silent", TRUE, NULL);
|
||||
|
||||
caps = gst_pad_get_caps_reffed (pad);
|
||||
caps = gst_pad_get_caps (pad, NULL);
|
||||
|
||||
if (gst_caps_can_intersect (caps, subs_caps)) {
|
||||
/* Subtitle streams are sparse and don't provide any information - don't
|
||||
|
@ -582,7 +582,7 @@ collect_stream_information (GstDiscoverer * dc, PrivateStream * ps, guint idx)
|
|||
if (!caps) {
|
||||
GST_WARNING ("Couldn't get negotiated caps from %s:%s",
|
||||
GST_DEBUG_PAD_NAME (ps->pad));
|
||||
caps = gst_pad_get_caps (ps->pad);
|
||||
caps = gst_pad_get_caps (ps->pad, NULL);
|
||||
}
|
||||
if (caps) {
|
||||
GST_DEBUG ("Got caps %" GST_PTR_FORMAT, caps);
|
||||
|
|
Loading…
Reference in a new issue