From: Tim-Philipp Müller Date: Sun, 26 Jun 2011 00:06:19 +0000 (+0100) Subject: tests: the navigation interface isn't GstImplementsInterface-wrapped X-Git-Tag: 1.19.3~511^2~6555^2~792 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dd97ccc293818ea97df8920a2e079775550f4a90;p=platform%2Fupstream%2Fgstreamer.git tests: the navigation interface isn't GstImplementsInterface-wrapped --- diff --git a/tests/check/libs/navigation.c b/tests/check/libs/navigation.c index e3928d1..1f143a3 100644 --- a/tests/check/libs/navigation.c +++ b/tests/check/libs/navigation.c @@ -54,7 +54,6 @@ struct TestElementClass GType test_element_get_type (void); static void init_interface (GType type); -static void gst_implements_interface_init (GstImplementsInterfaceClass * klass); static void nav_send_event (GstNavigation * navigation, GstStructure * structure); @@ -75,14 +74,7 @@ init_interface (GType type) NULL, NULL, }; - static const GInterfaceInfo implements_iface_info = { - (GInterfaceInitFunc) gst_implements_interface_init, - NULL, - NULL, - }; - g_type_add_interface_static (type, GST_TYPE_IMPLEMENTS_INTERFACE, - &implements_iface_info); g_type_add_interface_static (type, GST_TYPE_NAVIGATION, &navigation_iface_info); } @@ -97,22 +89,6 @@ test_element_class_init (TestElementClass * klass) { } -static gboolean -test_element_interface_supported (GstImplementsInterface * ifacE, - GType interface_type) -{ - if (interface_type == GST_TYPE_NAVIGATION) - return TRUE; - - return FALSE; -} - -static void -gst_implements_interface_init (GstImplementsInterfaceClass * klass) -{ - klass->supported = test_element_interface_supported; -} - static void test_element_init (TestElement * this, TestElementClass * klass) {