├── .gitignore ├── .gitmodules ├── License.txt ├── Readme.txt └── src ├── Exports.def ├── Icon.bmp ├── OsdCompositor.cpp ├── OsdCompositor.h ├── PseudoOSD.cpp ├── PseudoOSD.hpp ├── SwitchLang.bmp ├── SwitchSetting.bmp ├── TVCaption3.cpp ├── TVCaption3.hpp ├── TVCaption3.rc ├── TVCaption3.sln ├── TVCaption3.vcxproj ├── TVCaption3.vcxproj.filters ├── TVTestPlugin.h ├── Util.cpp ├── Util.hpp ├── ViewerClockEstimator.cpp ├── ViewerClockEstimator.hpp ├── aribcc_config.h ├── resource.h └── rom ├── 00.wav ├── 01.wav ├── 05.wav ├── 06.wav ├── 07.wav ├── 08.wav ├── 09.wav ├── 10.wav ├── 11.wav ├── 12.wav ├── 13.wav └── readme.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/.gitmodules -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/License.txt -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/Readme.txt -------------------------------------------------------------------------------- /src/Exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/Exports.def -------------------------------------------------------------------------------- /src/Icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/Icon.bmp -------------------------------------------------------------------------------- /src/OsdCompositor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/OsdCompositor.cpp -------------------------------------------------------------------------------- /src/OsdCompositor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/OsdCompositor.h -------------------------------------------------------------------------------- /src/PseudoOSD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/PseudoOSD.cpp -------------------------------------------------------------------------------- /src/PseudoOSD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/PseudoOSD.hpp -------------------------------------------------------------------------------- /src/SwitchLang.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/SwitchLang.bmp -------------------------------------------------------------------------------- /src/SwitchSetting.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/SwitchSetting.bmp -------------------------------------------------------------------------------- /src/TVCaption3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/TVCaption3.cpp -------------------------------------------------------------------------------- /src/TVCaption3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/TVCaption3.hpp -------------------------------------------------------------------------------- /src/TVCaption3.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/TVCaption3.rc -------------------------------------------------------------------------------- /src/TVCaption3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/TVCaption3.sln -------------------------------------------------------------------------------- /src/TVCaption3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/TVCaption3.vcxproj -------------------------------------------------------------------------------- /src/TVCaption3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/TVCaption3.vcxproj.filters -------------------------------------------------------------------------------- /src/TVTestPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/TVTestPlugin.h -------------------------------------------------------------------------------- /src/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/Util.cpp -------------------------------------------------------------------------------- /src/Util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/Util.hpp -------------------------------------------------------------------------------- /src/ViewerClockEstimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/ViewerClockEstimator.cpp -------------------------------------------------------------------------------- /src/ViewerClockEstimator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/ViewerClockEstimator.hpp -------------------------------------------------------------------------------- /src/aribcc_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/aribcc_config.h -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/rom/00.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/rom/00.wav -------------------------------------------------------------------------------- /src/rom/01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/rom/01.wav -------------------------------------------------------------------------------- /src/rom/05.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/rom/05.wav -------------------------------------------------------------------------------- /src/rom/06.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/rom/06.wav -------------------------------------------------------------------------------- /src/rom/07.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/rom/07.wav -------------------------------------------------------------------------------- /src/rom/08.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/rom/08.wav -------------------------------------------------------------------------------- /src/rom/09.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/rom/09.wav -------------------------------------------------------------------------------- /src/rom/10.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/rom/10.wav -------------------------------------------------------------------------------- /src/rom/11.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/rom/11.wav -------------------------------------------------------------------------------- /src/rom/12.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/rom/12.wav -------------------------------------------------------------------------------- /src/rom/13.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/rom/13.wav -------------------------------------------------------------------------------- /src/rom/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtne6f/TVCaption3/HEAD/src/rom/readme.txt --------------------------------------------------------------------------------