├── .gitignore ├── ExampleDecode ├── App.config ├── ExampleDecode.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── ExampleEncode ├── App.config ├── ExampleEncode.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── LTCNodes ├── DecoderNode.cs ├── LTCNodes.csproj ├── ListDevicesNode.cs ├── Properties │ └── AssemblyInfo.cs ├── TimecodeSplit.cs ├── VVVV.Nodes.Timecode.LTC.zip ├── VVVV.Nodes.Timecode.LTC │ └── Decoder (Timecode LTC) help.v4p └── example.v4p ├── LTCSharp.sln ├── LTCSharp ├── AssemblyInfo.cpp ├── Classes.cpp ├── Classes.h ├── LTCSharp.vcxproj ├── LTCSharp.vcxproj.filters ├── ReadMe.txt ├── Stdafx.cpp ├── Stdafx.h ├── app.ico ├── app.rc └── resource.h ├── README.md └── libltc ├── AUTHORS ├── COPYING ├── ChangeLog ├── Doxyfile.in ├── INSTALL ├── Makefile.am ├── README.md ├── ReadMe.txt ├── configure.ac ├── doc ├── Makefile.am ├── libltc.png ├── mainpage.dox ├── man │ └── man3 │ │ └── ltc.h.3 └── smptefmt.png ├── libltc.vcxproj ├── libltc.vcxproj.filters ├── ltc.pc.in ├── src ├── Makefile.am ├── decoder.cpp ├── decoder.h ├── encoder.cpp ├── encoder.h ├── ltc.cpp ├── ltc.h └── timecode.cpp └── tests ├── Makefile.am ├── example_encode.c ├── expect_48k_2sec.txt ├── expect_96k_2sec.txt ├── ltcdecode.c ├── ltcencode.c ├── timecode.raw └── timecode.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /ExampleDecode/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/ExampleDecode/App.config -------------------------------------------------------------------------------- /ExampleDecode/ExampleDecode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/ExampleDecode/ExampleDecode.csproj -------------------------------------------------------------------------------- /ExampleDecode/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/ExampleDecode/Program.cs -------------------------------------------------------------------------------- /ExampleDecode/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/ExampleDecode/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExampleEncode/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/ExampleEncode/App.config -------------------------------------------------------------------------------- /ExampleEncode/ExampleEncode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/ExampleEncode/ExampleEncode.csproj -------------------------------------------------------------------------------- /ExampleEncode/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/ExampleEncode/Program.cs -------------------------------------------------------------------------------- /ExampleEncode/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/ExampleEncode/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LTCNodes/DecoderNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCNodes/DecoderNode.cs -------------------------------------------------------------------------------- /LTCNodes/LTCNodes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCNodes/LTCNodes.csproj -------------------------------------------------------------------------------- /LTCNodes/ListDevicesNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCNodes/ListDevicesNode.cs -------------------------------------------------------------------------------- /LTCNodes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCNodes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LTCNodes/TimecodeSplit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCNodes/TimecodeSplit.cs -------------------------------------------------------------------------------- /LTCNodes/VVVV.Nodes.Timecode.LTC.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCNodes/VVVV.Nodes.Timecode.LTC.zip -------------------------------------------------------------------------------- /LTCNodes/VVVV.Nodes.Timecode.LTC/Decoder (Timecode LTC) help.v4p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCNodes/VVVV.Nodes.Timecode.LTC/Decoder (Timecode LTC) help.v4p -------------------------------------------------------------------------------- /LTCNodes/example.v4p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCNodes/example.v4p -------------------------------------------------------------------------------- /LTCSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCSharp.sln -------------------------------------------------------------------------------- /LTCSharp/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCSharp/AssemblyInfo.cpp -------------------------------------------------------------------------------- /LTCSharp/Classes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCSharp/Classes.cpp -------------------------------------------------------------------------------- /LTCSharp/Classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCSharp/Classes.h -------------------------------------------------------------------------------- /LTCSharp/LTCSharp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCSharp/LTCSharp.vcxproj -------------------------------------------------------------------------------- /LTCSharp/LTCSharp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCSharp/LTCSharp.vcxproj.filters -------------------------------------------------------------------------------- /LTCSharp/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCSharp/ReadMe.txt -------------------------------------------------------------------------------- /LTCSharp/Stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCSharp/Stdafx.cpp -------------------------------------------------------------------------------- /LTCSharp/Stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCSharp/Stdafx.h -------------------------------------------------------------------------------- /LTCSharp/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCSharp/app.ico -------------------------------------------------------------------------------- /LTCSharp/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCSharp/app.rc -------------------------------------------------------------------------------- /LTCSharp/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/LTCSharp/resource.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/README.md -------------------------------------------------------------------------------- /libltc/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/AUTHORS -------------------------------------------------------------------------------- /libltc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/COPYING -------------------------------------------------------------------------------- /libltc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/ChangeLog -------------------------------------------------------------------------------- /libltc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/Doxyfile.in -------------------------------------------------------------------------------- /libltc/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/INSTALL -------------------------------------------------------------------------------- /libltc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/Makefile.am -------------------------------------------------------------------------------- /libltc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/README.md -------------------------------------------------------------------------------- /libltc/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/ReadMe.txt -------------------------------------------------------------------------------- /libltc/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/configure.ac -------------------------------------------------------------------------------- /libltc/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/doc/Makefile.am -------------------------------------------------------------------------------- /libltc/doc/libltc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/doc/libltc.png -------------------------------------------------------------------------------- /libltc/doc/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/doc/mainpage.dox -------------------------------------------------------------------------------- /libltc/doc/man/man3/ltc.h.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/doc/man/man3/ltc.h.3 -------------------------------------------------------------------------------- /libltc/doc/smptefmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/doc/smptefmt.png -------------------------------------------------------------------------------- /libltc/libltc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/libltc.vcxproj -------------------------------------------------------------------------------- /libltc/libltc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/libltc.vcxproj.filters -------------------------------------------------------------------------------- /libltc/ltc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/ltc.pc.in -------------------------------------------------------------------------------- /libltc/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/src/Makefile.am -------------------------------------------------------------------------------- /libltc/src/decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/src/decoder.cpp -------------------------------------------------------------------------------- /libltc/src/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/src/decoder.h -------------------------------------------------------------------------------- /libltc/src/encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/src/encoder.cpp -------------------------------------------------------------------------------- /libltc/src/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/src/encoder.h -------------------------------------------------------------------------------- /libltc/src/ltc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/src/ltc.cpp -------------------------------------------------------------------------------- /libltc/src/ltc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/src/ltc.h -------------------------------------------------------------------------------- /libltc/src/timecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/src/timecode.cpp -------------------------------------------------------------------------------- /libltc/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/tests/Makefile.am -------------------------------------------------------------------------------- /libltc/tests/example_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/tests/example_encode.c -------------------------------------------------------------------------------- /libltc/tests/expect_48k_2sec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/tests/expect_48k_2sec.txt -------------------------------------------------------------------------------- /libltc/tests/expect_96k_2sec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/tests/expect_96k_2sec.txt -------------------------------------------------------------------------------- /libltc/tests/ltcdecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/tests/ltcdecode.c -------------------------------------------------------------------------------- /libltc/tests/ltcencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/tests/ltcencode.c -------------------------------------------------------------------------------- /libltc/tests/timecode.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/tests/timecode.raw -------------------------------------------------------------------------------- /libltc/tests/timecode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/LTCSharp/HEAD/libltc/tests/timecode.txt --------------------------------------------------------------------------------