├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md └── dynamic_examples.c /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | build/ 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcaden/gst-dynamic-examples/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcaden/gst-dynamic-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcaden/gst-dynamic-examples/HEAD/README.md -------------------------------------------------------------------------------- /dynamic_examples.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcaden/gst-dynamic-examples/HEAD/dynamic_examples.c --------------------------------------------------------------------------------