summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2010-06-17 13:15:20 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2010-06-17 13:15:45 +0100
commita84c57ea5c9a2bb1f67a2ad6e630399058d7ee95 (patch)
tree236feb4a64838d37164162693eb8eab403e1bac9
parenta2664ab4d335ec690039f4abdaaba3891c62da0f (diff)
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.
-rwxr-xr-xgstdoc-scangobj5
1 files changed, 5 insertions, 0 deletions
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",