From a84c57ea5c9a2bb1f67a2ad6e630399058d7ee95 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 17 Jun 2010 13:15:20 +0100 Subject: [PATCH] gstdoc-scanobj: skip static coreelements plugin with bin and pipeline factories Same as we did before. It's best not to expose GstBin and GstPipeline here to avoid confusion. People are better off consulting the GstBin and GstPipeline API docs and constructing bins and pipelines using the API provided there. --- gstdoc-scangobj | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gstdoc-scangobj b/gstdoc-scangobj index 8b38d64..9cd5018 100755 --- a/gstdoc-scangobj +++ b/gstdoc-scangobj @@ -198,6 +198,11 @@ get_object_types (void) if (!source || strcmp (source, "$SOURCE") != 0) { continue; } + + /* skip static coreelements plugin with pipeline and bin element factory */ + if (gst_plugin_get_filename (plugin) == NULL) + continue; + g_print ("plugin: %s source: %s\\n", plugin->desc.name, source); inspect_name = g_strdup_printf ("$INSPECT_DIR" G_DIR_SEPARATOR_S "plugin-%s.xml", -- 2.7.4