From 1a99533be89ef4438908715dfc32b52581a2b588 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Sat, 30 May 2020 23:23:51 +0300 Subject: [PATCH] plugins: Use gst_type_mark_as_plugin_api() for all non-element plugin types --- gst/rtsp-sink/gstrtspclientsink.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gst/rtsp-sink/gstrtspclientsink.c b/gst/rtsp-sink/gstrtspclientsink.c index 19f9cda..e4544e5 100644 --- a/gst/rtsp-sink/gstrtspclientsink.c +++ b/gst/rtsp-sink/gstrtspclientsink.c @@ -820,6 +820,9 @@ gst_rtsp_client_sink_class_init (GstRTSPClientSinkClass * klass) "Jan Schmidt "); gstbin_class->handle_message = gst_rtsp_client_sink_handle_message; + + gst_type_mark_as_plugin_api (GST_TYPE_RTSP_CLIENT_SINK_PAD); + gst_type_mark_as_plugin_api (GST_TYPE_RTSP_CLIENT_SINK_NTP_TIME_SOURCE); } static void -- 2.7.4