├── .gitignore ├── COPYING ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac └── plugins ├── Makefile.am ├── gstabsolutetimestamps.c └── gstabsolutetimestamps.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-hawkins/gst-absolutetimestamps/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-hawkins/gst-absolutetimestamps/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-hawkins/gst-absolutetimestamps/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-hawkins/gst-absolutetimestamps/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-hawkins/gst-absolutetimestamps/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-hawkins/gst-absolutetimestamps/HEAD/configure.ac -------------------------------------------------------------------------------- /plugins/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-hawkins/gst-absolutetimestamps/HEAD/plugins/Makefile.am -------------------------------------------------------------------------------- /plugins/gstabsolutetimestamps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-hawkins/gst-absolutetimestamps/HEAD/plugins/gstabsolutetimestamps.c -------------------------------------------------------------------------------- /plugins/gstabsolutetimestamps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/george-hawkins/gst-absolutetimestamps/HEAD/plugins/gstabsolutetimestamps.h --------------------------------------------------------------------------------