From dd97ccc293818ea97df8920a2e079775550f4a90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sun, 26 Jun 2011 01:06:19 +0100 Subject: [PATCH] tests: the navigation interface isn't GstImplementsInterface-wrapped --- tests/check/libs/navigation.c | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/tests/check/libs/navigation.c b/tests/check/libs/navigation.c index e3928d1617..1f143a342a 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) {