├── .gitignore ├── Makefile ├── README.md ├── big-buck-bunny_trailer.webm ├── command-lines.txt ├── cooldance.ogg ├── gstreamer-tutorial-lca2k18.pdf ├── network-clocks ├── Makefile ├── README.md ├── netclock-server.c └── playback-sync.c ├── playback.c └── test-rtsp-uri.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thaytan/gst-tutorial-lca2018/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thaytan/gst-tutorial-lca2018/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thaytan/gst-tutorial-lca2018/HEAD/README.md -------------------------------------------------------------------------------- /big-buck-bunny_trailer.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thaytan/gst-tutorial-lca2018/HEAD/big-buck-bunny_trailer.webm -------------------------------------------------------------------------------- /command-lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thaytan/gst-tutorial-lca2018/HEAD/command-lines.txt -------------------------------------------------------------------------------- /cooldance.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thaytan/gst-tutorial-lca2018/HEAD/cooldance.ogg -------------------------------------------------------------------------------- /gstreamer-tutorial-lca2k18.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thaytan/gst-tutorial-lca2018/HEAD/gstreamer-tutorial-lca2k18.pdf -------------------------------------------------------------------------------- /network-clocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thaytan/gst-tutorial-lca2018/HEAD/network-clocks/Makefile -------------------------------------------------------------------------------- /network-clocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thaytan/gst-tutorial-lca2018/HEAD/network-clocks/README.md -------------------------------------------------------------------------------- /network-clocks/netclock-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thaytan/gst-tutorial-lca2018/HEAD/network-clocks/netclock-server.c -------------------------------------------------------------------------------- /network-clocks/playback-sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thaytan/gst-tutorial-lca2018/HEAD/network-clocks/playback-sync.c -------------------------------------------------------------------------------- /playback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thaytan/gst-tutorial-lca2018/HEAD/playback.c -------------------------------------------------------------------------------- /test-rtsp-uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thaytan/gst-tutorial-lca2018/HEAD/test-rtsp-uri.c --------------------------------------------------------------------------------