From: Sebastian Dröge Date: Mon, 22 Jun 2020 09:33:32 +0000 (+0300) Subject: rtspclientsink: Don't call gst_ghost_pad_construct() anymore X-Git-Tag: 1.19.3~495^2~58 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1c74592806df4785cd96eef12066a654b7661764;p=platform%2Fupstream%2Fgstreamer.git rtspclientsink: Don't call gst_ghost_pad_construct() anymore It's deprecated, unneeded and doesn't do anything anymore. Part-of: --- diff --git a/gst/rtsp-sink/gstrtspclientsink.c b/gst/rtsp-sink/gstrtspclientsink.c index 38536ce..59c2125 100644 --- a/gst/rtsp-sink/gstrtspclientsink.c +++ b/gst/rtsp-sink/gstrtspclientsink.c @@ -227,7 +227,6 @@ gst_rtsp_client_sink_pad_new (const GstPadTemplate * pad_tmpl, ret = g_object_new (GST_TYPE_RTSP_CLIENT_SINK_PAD, "direction", GST_PAD_SINK, "template", pad_tmpl, "name", name, NULL); - gst_ghost_pad_construct (GST_GHOST_PAD_CAST (ret)); return GST_PAD (ret); }