From d77991106bb9a9e1aa05491f56150c52ab02d4d3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Sun, 26 Jun 2011 00:40:20 +0100 Subject: [PATCH] rtsp: GstRTSPExtension isn't wrapped by GstImplementsInterface Fix copy'n'paste error in headers, GstRTSPExtension isn't something that's per-instance. --- gst-libs/gst/rtsp/gstrtspextension.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/rtsp/gstrtspextension.h b/gst-libs/gst/rtsp/gstrtspextension.h index a697c90..e2995f3 100644 --- a/gst-libs/gst/rtsp/gstrtspextension.h +++ b/gst-libs/gst/rtsp/gstrtspextension.h @@ -34,9 +34,9 @@ G_BEGIN_DECLS #define GST_TYPE_RTSP_EXTENSION \ (gst_rtsp_extension_get_type ()) #define GST_RTSP_EXTENSION(obj) \ - (GST_IMPLEMENTS_INTERFACE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_EXTENSION, GstRTSPExtension)) + (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_EXTENSION, GstRTSPExtension)) #define GST_IS_RTSP_EXTENSION(obj) \ - (GST_IMPLEMENTS_INTERFACE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_EXTENSION)) + (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_EXTENSION)) #define GST_RTSP_EXTENSION_GET_IFACE(inst) \ (G_TYPE_INSTANCE_GET_INTERFACE ((inst), GST_TYPE_RTSP_EXTENSION, GstRTSPExtensionInterface)) -- 2.7.4