├── .clang-format ├── .gitignore ├── ABOUT-NLS ├── AUTHORS ├── COPYING ├── ChangeLog ├── HACKING ├── Makefile.am ├── NEWS ├── README ├── README.md ├── RELEASE ├── TODO ├── autogen.sh ├── common ├── ChangeLog ├── Makefile.am ├── c-to-xml.py ├── check-exports ├── check.mak ├── coverage │ ├── coverage-report-entry.pl │ ├── coverage-report.pl │ ├── coverage-report.xsl │ └── lcov.mak ├── download-translations ├── gettext.patch ├── glib-gen.mak ├── gst-autogen.sh ├── gst-xmlinspect.py ├── gst.supp ├── gstdoc-scangobj ├── gtk-doc-plugins.mak ├── gtk-doc.mak ├── m4 │ ├── .gitignore │ ├── Makefile.am │ ├── README │ ├── as-ac-expand.m4 │ ├── as-auto-alt.m4 │ ├── as-compiler-flag.m4 │ ├── as-compiler.m4 │ ├── as-docbook.m4 │ ├── as-gcc-inline-assembly.m4 │ ├── as-libtool-tags.m4 │ ├── as-libtool.m4 │ ├── as-objc.m4 │ ├── as-python.m4 │ ├── as-scrub-include.m4 │ ├── as-version.m4 │ ├── ax_create_stdint_h.m4 │ ├── check.m4 │ ├── glib-gettext.m4 │ ├── gst-arch.m4 │ ├── gst-args.m4 │ ├── gst-check.m4 │ ├── gst-debuginfo.m4 │ ├── gst-default.m4 │ ├── gst-doc.m4 │ ├── gst-dowhile.m4 │ ├── gst-error.m4 │ ├── gst-feature.m4 │ ├── gst-function.m4 │ ├── gst-gettext.m4 │ ├── gst-glib2.m4 │ ├── gst-libxml2.m4 │ ├── gst-parser.m4 │ ├── gst-plugin-docs.m4 │ ├── gst-plugindir.m4 │ ├── gst-valgrind.m4 │ ├── gst-x11.m4 │ ├── gst.m4 │ ├── gtk-doc.m4 │ └── pkg.m4 ├── mangle-tmpl.py ├── plugins.xsl ├── po.mak ├── release.mak ├── scangobj-merge.py ├── upload-doc.mak ├── upload.mak └── win32.mak ├── config.rpath ├── configure.ac ├── gst-editor-libs-uninstalled.pc.in ├── gst-editor-libs.pc.in ├── gst-editor.desktop.in ├── gst-inspect.desktop.in ├── gst-launch.desktop.in ├── help ├── C │ ├── Makefile.am │ ├── gst-editor-manual-C.omf │ ├── gst-editor-manual.xml │ └── legal.xml ├── Makefile.am ├── omf.make └── xmldocs.make ├── intltool-extract.in ├── intltool-merge.in ├── intltool-update.in ├── libs ├── Makefile.am └── gst │ ├── Makefile.am │ ├── common │ ├── Makefile.am │ ├── gste-common-priv.h │ ├── gste-common.c │ ├── gste-common.h │ ├── gste-debug.c │ ├── gste-debug.h │ ├── gste-dnd.h │ ├── gste-dock.h │ ├── gste-marshal.list │ ├── gste-serialize.c │ └── gste-serialize.h │ ├── debug-ui │ ├── Makefile.am │ ├── debug-ui.c │ └── debug-ui.h │ ├── editor │ ├── Makefile.am │ ├── editor.h │ ├── gst-helper.c │ ├── gst-helper.h │ ├── gsteditor.c │ ├── gsteditor.h │ ├── gsteditorbin.c │ ├── gsteditorbin.h │ ├── gsteditorcanvas.c │ ├── gsteditorcanvas.h │ ├── gsteditorelement.c │ ├── gsteditorelement.h │ ├── gsteditoritem.c │ ├── gsteditoritem.h │ ├── gsteditorlink.c │ ├── gsteditorlink.h │ ├── gsteditorpad.c │ ├── gsteditorpad.h │ ├── gsteditorpalette.c │ ├── gsteditorpalette.h │ ├── gsteditorpopup.c │ ├── gsteditorpopup.h │ ├── gsteditorproperty.c │ ├── gsteditorproperty.h │ ├── namedicons.c │ └── namedicons.h │ ├── element-browser │ ├── Makefile.am │ ├── browser.c │ ├── browser.h │ ├── caps-tree.c │ ├── caps-tree.h │ ├── element-tree.c │ └── element-tree.h │ └── element-ui │ ├── Makefile.am │ ├── gst-element-ui-prop-view.c │ ├── gst-element-ui-prop-view.h │ ├── gst-element-ui.c │ └── gst-element-ui.h ├── mkinstalldirs ├── pixmaps ├── Makefile.am ├── copyright.txt ├── gst-editor.png ├── gst-inspect.png ├── gst-launch.png ├── off.png ├── on.png ├── pause.png └── play.png ├── po ├── ChangeLog ├── POTFILES.in ├── nl.po └── no.po └── src ├── Makefile.am ├── editor.c ├── editor.ui ├── gst-editor.1 ├── gst-inspect-gui.1 ├── gst-inspect-gui.c ├── gst-launch-gui.1 └── gst-launch-gui.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/ABOUT-NLS -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/ChangeLog -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/HACKING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -added this file to fix compilation issues 2 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | README -------------------------------------------------------------------------------- /RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/RELEASE -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/TODO -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/autogen.sh -------------------------------------------------------------------------------- /common/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/ChangeLog -------------------------------------------------------------------------------- /common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/Makefile.am -------------------------------------------------------------------------------- /common/c-to-xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/c-to-xml.py -------------------------------------------------------------------------------- /common/check-exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/check-exports -------------------------------------------------------------------------------- /common/check.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/check.mak -------------------------------------------------------------------------------- /common/coverage/coverage-report-entry.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/coverage/coverage-report-entry.pl -------------------------------------------------------------------------------- /common/coverage/coverage-report.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/coverage/coverage-report.pl -------------------------------------------------------------------------------- /common/coverage/coverage-report.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/coverage/coverage-report.xsl -------------------------------------------------------------------------------- /common/coverage/lcov.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/coverage/lcov.mak -------------------------------------------------------------------------------- /common/download-translations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/download-translations -------------------------------------------------------------------------------- /common/gettext.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/gettext.patch -------------------------------------------------------------------------------- /common/glib-gen.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/glib-gen.mak -------------------------------------------------------------------------------- /common/gst-autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/gst-autogen.sh -------------------------------------------------------------------------------- /common/gst-xmlinspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/gst-xmlinspect.py -------------------------------------------------------------------------------- /common/gst.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/gst.supp -------------------------------------------------------------------------------- /common/gstdoc-scangobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/gstdoc-scangobj -------------------------------------------------------------------------------- /common/gtk-doc-plugins.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/gtk-doc-plugins.mak -------------------------------------------------------------------------------- /common/gtk-doc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/gtk-doc.mak -------------------------------------------------------------------------------- /common/m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/.gitignore -------------------------------------------------------------------------------- /common/m4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/Makefile.am -------------------------------------------------------------------------------- /common/m4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/README -------------------------------------------------------------------------------- /common/m4/as-ac-expand.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/as-ac-expand.m4 -------------------------------------------------------------------------------- /common/m4/as-auto-alt.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/as-auto-alt.m4 -------------------------------------------------------------------------------- /common/m4/as-compiler-flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/as-compiler-flag.m4 -------------------------------------------------------------------------------- /common/m4/as-compiler.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/as-compiler.m4 -------------------------------------------------------------------------------- /common/m4/as-docbook.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/as-docbook.m4 -------------------------------------------------------------------------------- /common/m4/as-gcc-inline-assembly.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/as-gcc-inline-assembly.m4 -------------------------------------------------------------------------------- /common/m4/as-libtool-tags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/as-libtool-tags.m4 -------------------------------------------------------------------------------- /common/m4/as-libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/as-libtool.m4 -------------------------------------------------------------------------------- /common/m4/as-objc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/as-objc.m4 -------------------------------------------------------------------------------- /common/m4/as-python.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/as-python.m4 -------------------------------------------------------------------------------- /common/m4/as-scrub-include.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/as-scrub-include.m4 -------------------------------------------------------------------------------- /common/m4/as-version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/as-version.m4 -------------------------------------------------------------------------------- /common/m4/ax_create_stdint_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/ax_create_stdint_h.m4 -------------------------------------------------------------------------------- /common/m4/check.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/check.m4 -------------------------------------------------------------------------------- /common/m4/glib-gettext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/glib-gettext.m4 -------------------------------------------------------------------------------- /common/m4/gst-arch.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gst-arch.m4 -------------------------------------------------------------------------------- /common/m4/gst-args.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gst-args.m4 -------------------------------------------------------------------------------- /common/m4/gst-check.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gst-check.m4 -------------------------------------------------------------------------------- /common/m4/gst-debuginfo.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gst-debuginfo.m4 -------------------------------------------------------------------------------- /common/m4/gst-default.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gst-default.m4 -------------------------------------------------------------------------------- /common/m4/gst-doc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gst-doc.m4 -------------------------------------------------------------------------------- /common/m4/gst-dowhile.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gst-dowhile.m4 -------------------------------------------------------------------------------- /common/m4/gst-error.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gst-error.m4 -------------------------------------------------------------------------------- /common/m4/gst-feature.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gst-feature.m4 -------------------------------------------------------------------------------- /common/m4/gst-function.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gst-function.m4 -------------------------------------------------------------------------------- /common/m4/gst-gettext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gst-gettext.m4 -------------------------------------------------------------------------------- /common/m4/gst-glib2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gst-glib2.m4 -------------------------------------------------------------------------------- /common/m4/gst-libxml2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gst-libxml2.m4 -------------------------------------------------------------------------------- /common/m4/gst-parser.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gst-parser.m4 -------------------------------------------------------------------------------- /common/m4/gst-plugin-docs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gst-plugin-docs.m4 -------------------------------------------------------------------------------- /common/m4/gst-plugindir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gst-plugindir.m4 -------------------------------------------------------------------------------- /common/m4/gst-valgrind.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gst-valgrind.m4 -------------------------------------------------------------------------------- /common/m4/gst-x11.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gst-x11.m4 -------------------------------------------------------------------------------- /common/m4/gst.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gst.m4 -------------------------------------------------------------------------------- /common/m4/gtk-doc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/gtk-doc.m4 -------------------------------------------------------------------------------- /common/m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/m4/pkg.m4 -------------------------------------------------------------------------------- /common/mangle-tmpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/mangle-tmpl.py -------------------------------------------------------------------------------- /common/plugins.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/plugins.xsl -------------------------------------------------------------------------------- /common/po.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/po.mak -------------------------------------------------------------------------------- /common/release.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/release.mak -------------------------------------------------------------------------------- /common/scangobj-merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/scangobj-merge.py -------------------------------------------------------------------------------- /common/upload-doc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/upload-doc.mak -------------------------------------------------------------------------------- /common/upload.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/upload.mak -------------------------------------------------------------------------------- /common/win32.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/common/win32.mak -------------------------------------------------------------------------------- /config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/config.rpath -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/configure.ac -------------------------------------------------------------------------------- /gst-editor-libs-uninstalled.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/gst-editor-libs-uninstalled.pc.in -------------------------------------------------------------------------------- /gst-editor-libs.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/gst-editor-libs.pc.in -------------------------------------------------------------------------------- /gst-editor.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/gst-editor.desktop.in -------------------------------------------------------------------------------- /gst-inspect.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/gst-inspect.desktop.in -------------------------------------------------------------------------------- /gst-launch.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/gst-launch.desktop.in -------------------------------------------------------------------------------- /help/C/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/help/C/Makefile.am -------------------------------------------------------------------------------- /help/C/gst-editor-manual-C.omf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/help/C/gst-editor-manual-C.omf -------------------------------------------------------------------------------- /help/C/gst-editor-manual.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/help/C/gst-editor-manual.xml -------------------------------------------------------------------------------- /help/C/legal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/help/C/legal.xml -------------------------------------------------------------------------------- /help/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/help/Makefile.am -------------------------------------------------------------------------------- /help/omf.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/help/omf.make -------------------------------------------------------------------------------- /help/xmldocs.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/help/xmldocs.make -------------------------------------------------------------------------------- /intltool-extract.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /intltool-merge.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /intltool-update.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=gst 2 | -------------------------------------------------------------------------------- /libs/gst/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/Makefile.am -------------------------------------------------------------------------------- /libs/gst/common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/common/Makefile.am -------------------------------------------------------------------------------- /libs/gst/common/gste-common-priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/common/gste-common-priv.h -------------------------------------------------------------------------------- /libs/gst/common/gste-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/common/gste-common.c -------------------------------------------------------------------------------- /libs/gst/common/gste-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/common/gste-common.h -------------------------------------------------------------------------------- /libs/gst/common/gste-debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/common/gste-debug.c -------------------------------------------------------------------------------- /libs/gst/common/gste-debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/common/gste-debug.h -------------------------------------------------------------------------------- /libs/gst/common/gste-dnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/common/gste-dnd.h -------------------------------------------------------------------------------- /libs/gst/common/gste-dock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/common/gste-dock.h -------------------------------------------------------------------------------- /libs/gst/common/gste-marshal.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/common/gste-marshal.list -------------------------------------------------------------------------------- /libs/gst/common/gste-serialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/common/gste-serialize.c -------------------------------------------------------------------------------- /libs/gst/common/gste-serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/common/gste-serialize.h -------------------------------------------------------------------------------- /libs/gst/debug-ui/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/debug-ui/Makefile.am -------------------------------------------------------------------------------- /libs/gst/debug-ui/debug-ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/debug-ui/debug-ui.c -------------------------------------------------------------------------------- /libs/gst/debug-ui/debug-ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/debug-ui/debug-ui.h -------------------------------------------------------------------------------- /libs/gst/editor/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/Makefile.am -------------------------------------------------------------------------------- /libs/gst/editor/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/editor.h -------------------------------------------------------------------------------- /libs/gst/editor/gst-helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gst-helper.c -------------------------------------------------------------------------------- /libs/gst/editor/gst-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gst-helper.h -------------------------------------------------------------------------------- /libs/gst/editor/gsteditor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditor.c -------------------------------------------------------------------------------- /libs/gst/editor/gsteditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditor.h -------------------------------------------------------------------------------- /libs/gst/editor/gsteditorbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditorbin.c -------------------------------------------------------------------------------- /libs/gst/editor/gsteditorbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditorbin.h -------------------------------------------------------------------------------- /libs/gst/editor/gsteditorcanvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditorcanvas.c -------------------------------------------------------------------------------- /libs/gst/editor/gsteditorcanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditorcanvas.h -------------------------------------------------------------------------------- /libs/gst/editor/gsteditorelement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditorelement.c -------------------------------------------------------------------------------- /libs/gst/editor/gsteditorelement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditorelement.h -------------------------------------------------------------------------------- /libs/gst/editor/gsteditoritem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditoritem.c -------------------------------------------------------------------------------- /libs/gst/editor/gsteditoritem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditoritem.h -------------------------------------------------------------------------------- /libs/gst/editor/gsteditorlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditorlink.c -------------------------------------------------------------------------------- /libs/gst/editor/gsteditorlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditorlink.h -------------------------------------------------------------------------------- /libs/gst/editor/gsteditorpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditorpad.c -------------------------------------------------------------------------------- /libs/gst/editor/gsteditorpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditorpad.h -------------------------------------------------------------------------------- /libs/gst/editor/gsteditorpalette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditorpalette.c -------------------------------------------------------------------------------- /libs/gst/editor/gsteditorpalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditorpalette.h -------------------------------------------------------------------------------- /libs/gst/editor/gsteditorpopup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditorpopup.c -------------------------------------------------------------------------------- /libs/gst/editor/gsteditorpopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditorpopup.h -------------------------------------------------------------------------------- /libs/gst/editor/gsteditorproperty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditorproperty.c -------------------------------------------------------------------------------- /libs/gst/editor/gsteditorproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/gsteditorproperty.h -------------------------------------------------------------------------------- /libs/gst/editor/namedicons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/namedicons.c -------------------------------------------------------------------------------- /libs/gst/editor/namedicons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/editor/namedicons.h -------------------------------------------------------------------------------- /libs/gst/element-browser/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/element-browser/Makefile.am -------------------------------------------------------------------------------- /libs/gst/element-browser/browser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/element-browser/browser.c -------------------------------------------------------------------------------- /libs/gst/element-browser/browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/element-browser/browser.h -------------------------------------------------------------------------------- /libs/gst/element-browser/caps-tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/element-browser/caps-tree.c -------------------------------------------------------------------------------- /libs/gst/element-browser/caps-tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/element-browser/caps-tree.h -------------------------------------------------------------------------------- /libs/gst/element-browser/element-tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/element-browser/element-tree.c -------------------------------------------------------------------------------- /libs/gst/element-browser/element-tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/element-browser/element-tree.h -------------------------------------------------------------------------------- /libs/gst/element-ui/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/element-ui/Makefile.am -------------------------------------------------------------------------------- /libs/gst/element-ui/gst-element-ui-prop-view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/element-ui/gst-element-ui-prop-view.c -------------------------------------------------------------------------------- /libs/gst/element-ui/gst-element-ui-prop-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/element-ui/gst-element-ui-prop-view.h -------------------------------------------------------------------------------- /libs/gst/element-ui/gst-element-ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/element-ui/gst-element-ui.c -------------------------------------------------------------------------------- /libs/gst/element-ui/gst-element-ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/libs/gst/element-ui/gst-element-ui.h -------------------------------------------------------------------------------- /mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/mkinstalldirs -------------------------------------------------------------------------------- /pixmaps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/pixmaps/Makefile.am -------------------------------------------------------------------------------- /pixmaps/copyright.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pixmaps/gst-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/pixmaps/gst-editor.png -------------------------------------------------------------------------------- /pixmaps/gst-inspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/pixmaps/gst-inspect.png -------------------------------------------------------------------------------- /pixmaps/gst-launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/pixmaps/gst-launch.png -------------------------------------------------------------------------------- /pixmaps/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/pixmaps/off.png -------------------------------------------------------------------------------- /pixmaps/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/pixmaps/on.png -------------------------------------------------------------------------------- /pixmaps/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/pixmaps/pause.png -------------------------------------------------------------------------------- /pixmaps/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/pixmaps/play.png -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/no.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/po/no.po -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/src/editor.c -------------------------------------------------------------------------------- /src/editor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/src/editor.ui -------------------------------------------------------------------------------- /src/gst-editor.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/src/gst-editor.1 -------------------------------------------------------------------------------- /src/gst-inspect-gui.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/src/gst-inspect-gui.1 -------------------------------------------------------------------------------- /src/gst-inspect-gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/src/gst-inspect-gui.c -------------------------------------------------------------------------------- /src/gst-launch-gui.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/src/gst-launch-gui.1 -------------------------------------------------------------------------------- /src/gst-launch-gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metratec/gst-editor/HEAD/src/gst-launch-gui.c --------------------------------------------------------------------------------