From: Tim-Philipp Müller Date: Thu, 17 Jun 2010 12:15:20 +0000 (+0100) Subject: gstdoc-scanobj: skip static coreelements plugin with bin and pipeline factories X-Git-Tag: upstream/20130618~118 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a84c57ea5c9a2bb1f67a2ad6e630399058d7ee95;p=platform%2Fupstream%2Fgst-common.git 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. --- 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",