diff options
-rw-r--r-- | gst-xmlinspect.py | 3 | ||||
-rw-r--r-- | gtk-doc-plugins.mak | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gst-xmlinspect.py b/gst-xmlinspect.py index abfb917..30c0cf8 100644 --- a/gst-xmlinspect.py +++ b/gst-xmlinspect.py @@ -120,6 +120,9 @@ def main(): for plugin in all: gst.debug("inspecting plugin %s from source %s" % ( plugin.get_name(), plugin.get_source())) + # this skips gstcoreelements, with bin and pipeline + if plugin.get_filename() is None: + continue if plugin.get_source() != source: continue diff --git a/gtk-doc-plugins.mak b/gtk-doc-plugins.mak index 66047b9..2163284 100644 --- a/gtk-doc-plugins.mak +++ b/gtk-doc-plugins.mak @@ -112,7 +112,7 @@ $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(SCANOBJ_FILES_O): scan-build.stamp INSPECT_REGISTRY=$(top_builddir)/docs/plugins/inspect-registry.xml INSPECT_ENVIRONMENT=\ GST_PLUGIN_SYSTEM_PATH= \ - GST_PLUGIN_PATH=$(top_builddir)/gst:$(top_builddir)/sys:$(top_builddir)/ext \ + GST_PLUGIN_PATH=$(top_builddir)/gst:$(top_builddir)/sys:$(top_builddir)/ext:$(top_builddir)/plugins \ GST_REGISTRY=$(INSPECT_REGISTRY) # update the element and plugin XML descriptions; store in inspect/ |