From 114d1525cae4e5efb01f6ecf7d027029259c59e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sun, 26 Jun 2011 00:49:46 +0100 Subject: [PATCH] interfaces: GstStreamVolume isn't wrapped by GstImplementsInterface This interface depends on properties and isn't per-instance. --- gst-libs/gst/interfaces/streamvolume.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/interfaces/streamvolume.h b/gst-libs/gst/interfaces/streamvolume.h index 32a824c75a..ea47ab6163 100644 --- a/gst-libs/gst/interfaces/streamvolume.h +++ b/gst-libs/gst/interfaces/streamvolume.h @@ -27,11 +27,11 @@ G_BEGIN_DECLS #define GST_TYPE_STREAM_VOLUME \ (gst_stream_volume_get_type ()) #define GST_STREAM_VOLUME(obj) \ - (GST_IMPLEMENTS_INTERFACE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_STREAM_VOLUME, GstStreamVolume)) + (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_STREAM_VOLUME, GstStreamVolume)) #define GST_STREAM_VOLUME_INTERFACE(iface) \ (G_TYPE_CHECK_INTERFACE_CAST ((iface), GST_TYPE_STREAM_VOLUME, GstStreamVolumeInterface)) #define GST_IS_STREAM_VOLUME(obj) \ - (GST_IMPLEMENTS_INTERFACE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_STREAM_VOLUME)) + (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_STREAM_VOLUME)) #define GST_IS_STREAM_VOLUME_INTERFACE(iface) \ (G_TYPE_CHECK_INTERFACE_TYPE ((iface), GST_TYPE_STREAM_VOLUME)) #define GST_STREAM_VOLUME_GET_INTERFACE(inst) \