├── AUTHORS ├── COPYING ├── ChangeLog ├── Doxyfile.in ├── INSTALL ├── Makefile.am ├── README.md ├── configure.ac ├── doc ├── Makefile.am ├── libltc.png ├── mainpage.dox ├── man │ └── man3 │ │ └── ltc.h.3 └── smptefmt.png ├── ltc.pc.in ├── src ├── Makefile.am ├── decoder.c ├── decoder.h ├── encoder.c ├── encoder.h ├── ltc.c ├── ltc.h └── timecode.c └── tests ├── Makefile.am ├── example_encode.c ├── expect_48k_2sec.txt ├── expect_96k_2sec.txt ├── ltcdecode.c ├── ltcencode.c ├── ltcloop.c ├── timecode.raw └── timecode.txt /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/ChangeLog -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/README.md -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/libltc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/doc/libltc.png -------------------------------------------------------------------------------- /doc/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/doc/mainpage.dox -------------------------------------------------------------------------------- /doc/man/man3/ltc.h.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/doc/man/man3/ltc.h.3 -------------------------------------------------------------------------------- /doc/smptefmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/doc/smptefmt.png -------------------------------------------------------------------------------- /ltc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/ltc.pc.in -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/src/decoder.c -------------------------------------------------------------------------------- /src/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/src/decoder.h -------------------------------------------------------------------------------- /src/encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/src/encoder.c -------------------------------------------------------------------------------- /src/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/src/encoder.h -------------------------------------------------------------------------------- /src/ltc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/src/ltc.c -------------------------------------------------------------------------------- /src/ltc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/src/ltc.h -------------------------------------------------------------------------------- /src/timecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/src/timecode.c -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/example_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/tests/example_encode.c -------------------------------------------------------------------------------- /tests/expect_48k_2sec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/tests/expect_48k_2sec.txt -------------------------------------------------------------------------------- /tests/expect_96k_2sec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/tests/expect_96k_2sec.txt -------------------------------------------------------------------------------- /tests/ltcdecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/tests/ltcdecode.c -------------------------------------------------------------------------------- /tests/ltcencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/tests/ltcencode.c -------------------------------------------------------------------------------- /tests/ltcloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/tests/ltcloop.c -------------------------------------------------------------------------------- /tests/timecode.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/tests/timecode.raw -------------------------------------------------------------------------------- /tests/timecode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/libltc/HEAD/tests/timecode.txt --------------------------------------------------------------------------------