diff options
Diffstat (limited to 'gst/autodetect')
-rw-r--r-- | gst/autodetect/gstautoaudiosink.c | 2 | ||||
-rw-r--r-- | gst/autodetect/gstautovideosink.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gst/autodetect/gstautoaudiosink.c b/gst/autodetect/gstautoaudiosink.c index afd7ba9f..dbd9efe7 100644 --- a/gst/autodetect/gstautoaudiosink.c +++ b/gst/autodetect/gstautoaudiosink.c @@ -88,7 +88,7 @@ static void gst_auto_audio_sink_init (GstAutoAudioSink * sink, GstAutoAudioSinkClass * g_class) { - sink->pad = gst_ghost_pad_new_notarget ("sink", GST_PAD_SINK); + sink->pad = gst_ghost_pad_new_no_target ("sink", GST_PAD_SINK); gst_element_add_pad (GST_ELEMENT (sink), sink->pad); gst_auto_audio_sink_reset (sink); diff --git a/gst/autodetect/gstautovideosink.c b/gst/autodetect/gstautovideosink.c index b9dfda81..5d2ba29e 100644 --- a/gst/autodetect/gstautovideosink.c +++ b/gst/autodetect/gstautovideosink.c @@ -88,7 +88,7 @@ static void gst_auto_video_sink_init (GstAutoVideoSink * sink, GstAutoVideoSinkClass * g_class) { - sink->pad = gst_ghost_pad_new_notarget ("sink", GST_PAD_SINK); + sink->pad = gst_ghost_pad_new_no_target ("sink", GST_PAD_SINK); gst_element_add_pad (GST_ELEMENT (sink), sink->pad); gst_auto_video_sink_reset (sink); |