├── .gitignore ├── COPYING ├── Makefile ├── app.c ├── dynamic-filter.c ├── dynamic-tee-vsink.c └── qt5-eventloop ├── gst-qt-example.cc ├── gst-qt-example.h └── gst-qt-example.pro /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdroege/gst-snippets/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdroege/gst-snippets/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdroege/gst-snippets/HEAD/Makefile -------------------------------------------------------------------------------- /app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdroege/gst-snippets/HEAD/app.c -------------------------------------------------------------------------------- /dynamic-filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdroege/gst-snippets/HEAD/dynamic-filter.c -------------------------------------------------------------------------------- /dynamic-tee-vsink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdroege/gst-snippets/HEAD/dynamic-tee-vsink.c -------------------------------------------------------------------------------- /qt5-eventloop/gst-qt-example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdroege/gst-snippets/HEAD/qt5-eventloop/gst-qt-example.cc -------------------------------------------------------------------------------- /qt5-eventloop/gst-qt-example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdroege/gst-snippets/HEAD/qt5-eventloop/gst-qt-example.h -------------------------------------------------------------------------------- /qt5-eventloop/gst-qt-example.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdroege/gst-snippets/HEAD/qt5-eventloop/gst-qt-example.pro --------------------------------------------------------------------------------