├── .gitignore ├── bin ├── Caption.dll 改造版の Readme.txt ├── Caption2Ass_PCR.exe の Readme.txt └── ini │ ├── Caption2Ass_PCR.ini │ └── Gaiji │ ├── UNICODE_cc_DRCS.ini │ ├── UNICODE_cc_gaiji.ini │ ├── UNICODE_cc_gaiji2.ini │ ├── _new-gaiji.bat │ ├── _new-gaiji.txt │ ├── cc_DRCS.ini │ ├── cc_gaiji.ini │ └── cc_gaiji2.ini ├── config.sh └── src ├── Caption2Ass_PCR.sln ├── Caption2Ass_PCR ├── Caption2AssParameter.cpp ├── Caption2AssParameter.h ├── Caption2Ass_PCR.cpp ├── Caption2Ass_PCR.h ├── Caption2Ass_PCR.rc ├── Caption2Ass_PCR.vcxproj ├── Caption2Ass_PCR.vcxproj.filters ├── CaptionDllUtil.cpp ├── CaptionDllUtil.h ├── IniFile.cpp ├── IniFile.h ├── ass_header.cpp ├── ass_header.h ├── cmdline.cpp ├── cmdline.h ├── resource.h ├── stdafx.h ├── tslUtil.cpp └── tslUtil.h ├── Caption_dll ├── ARIB8CharDecode.cpp ├── ARIB8CharDecode.h ├── ARIBGaiji.h ├── CalcMD5.cpp ├── CalcMD5.h ├── Caption.cpp ├── Caption.def ├── Caption.rc ├── Caption.vcxproj ├── Caption.vcxproj.filters ├── CaptionMain.cpp ├── CaptionMain.h ├── ColorDef.h ├── IniFile.cpp ├── IniFile.h ├── resource.h └── stdafx.h ├── common ├── Caption.h ├── CaptionDef.h ├── CommRoutine.cpp ├── CommRoutine.h ├── file_common.h ├── file_reader.cpp ├── file_reader.h ├── packet_types.h └── targetver.h ├── config.h ├── doc ├── Caption2Ass Readme.txt ├── Caption2Ass 補完計画(Cleanup code)Readme.txt └── Caption2Ass_PCR_src_0108のReadme.txt ├── extra ├── UNICODE_cc_gaiji.ini ├── UNICODE_cc_gaiji2.ini ├── WinDVD_cc_gaiji.ini ├── cc_DRCS.ini ├── cc_gaiji.ini └── cc_gaiji2.ini └── msvcX.props /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/.gitignore -------------------------------------------------------------------------------- /bin/Caption.dll 改造版の Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/bin/Caption.dll 改造版の Readme.txt -------------------------------------------------------------------------------- /bin/Caption2Ass_PCR.exe の Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/bin/Caption2Ass_PCR.exe の Readme.txt -------------------------------------------------------------------------------- /bin/ini/Caption2Ass_PCR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/bin/ini/Caption2Ass_PCR.ini -------------------------------------------------------------------------------- /bin/ini/Gaiji/UNICODE_cc_DRCS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/bin/ini/Gaiji/UNICODE_cc_DRCS.ini -------------------------------------------------------------------------------- /bin/ini/Gaiji/UNICODE_cc_gaiji.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/bin/ini/Gaiji/UNICODE_cc_gaiji.ini -------------------------------------------------------------------------------- /bin/ini/Gaiji/UNICODE_cc_gaiji2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/bin/ini/Gaiji/UNICODE_cc_gaiji2.ini -------------------------------------------------------------------------------- /bin/ini/Gaiji/_new-gaiji.bat: -------------------------------------------------------------------------------- 1 | dir /b /o *.gif > _new-gaiji.txt 2 | -------------------------------------------------------------------------------- /bin/ini/Gaiji/_new-gaiji.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/bin/ini/Gaiji/_new-gaiji.txt -------------------------------------------------------------------------------- /bin/ini/Gaiji/cc_DRCS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/bin/ini/Gaiji/cc_DRCS.ini -------------------------------------------------------------------------------- /bin/ini/Gaiji/cc_gaiji.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/bin/ini/Gaiji/cc_gaiji.ini -------------------------------------------------------------------------------- /bin/ini/Gaiji/cc_gaiji2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/bin/ini/Gaiji/cc_gaiji2.ini -------------------------------------------------------------------------------- /config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/config.sh -------------------------------------------------------------------------------- /src/Caption2Ass_PCR.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR.sln -------------------------------------------------------------------------------- /src/Caption2Ass_PCR/Caption2AssParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR/Caption2AssParameter.cpp -------------------------------------------------------------------------------- /src/Caption2Ass_PCR/Caption2AssParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR/Caption2AssParameter.h -------------------------------------------------------------------------------- /src/Caption2Ass_PCR/Caption2Ass_PCR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR/Caption2Ass_PCR.cpp -------------------------------------------------------------------------------- /src/Caption2Ass_PCR/Caption2Ass_PCR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR/Caption2Ass_PCR.h -------------------------------------------------------------------------------- /src/Caption2Ass_PCR/Caption2Ass_PCR.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR/Caption2Ass_PCR.rc -------------------------------------------------------------------------------- /src/Caption2Ass_PCR/Caption2Ass_PCR.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR/Caption2Ass_PCR.vcxproj -------------------------------------------------------------------------------- /src/Caption2Ass_PCR/Caption2Ass_PCR.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR/Caption2Ass_PCR.vcxproj.filters -------------------------------------------------------------------------------- /src/Caption2Ass_PCR/CaptionDllUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR/CaptionDllUtil.cpp -------------------------------------------------------------------------------- /src/Caption2Ass_PCR/CaptionDllUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR/CaptionDllUtil.h -------------------------------------------------------------------------------- /src/Caption2Ass_PCR/IniFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR/IniFile.cpp -------------------------------------------------------------------------------- /src/Caption2Ass_PCR/IniFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR/IniFile.h -------------------------------------------------------------------------------- /src/Caption2Ass_PCR/ass_header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR/ass_header.cpp -------------------------------------------------------------------------------- /src/Caption2Ass_PCR/ass_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR/ass_header.h -------------------------------------------------------------------------------- /src/Caption2Ass_PCR/cmdline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR/cmdline.cpp -------------------------------------------------------------------------------- /src/Caption2Ass_PCR/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR/cmdline.h -------------------------------------------------------------------------------- /src/Caption2Ass_PCR/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR/resource.h -------------------------------------------------------------------------------- /src/Caption2Ass_PCR/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR/stdafx.h -------------------------------------------------------------------------------- /src/Caption2Ass_PCR/tslUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR/tslUtil.cpp -------------------------------------------------------------------------------- /src/Caption2Ass_PCR/tslUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption2Ass_PCR/tslUtil.h -------------------------------------------------------------------------------- /src/Caption_dll/ARIB8CharDecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption_dll/ARIB8CharDecode.cpp -------------------------------------------------------------------------------- /src/Caption_dll/ARIB8CharDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption_dll/ARIB8CharDecode.h -------------------------------------------------------------------------------- /src/Caption_dll/ARIBGaiji.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption_dll/ARIBGaiji.h -------------------------------------------------------------------------------- /src/Caption_dll/CalcMD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption_dll/CalcMD5.cpp -------------------------------------------------------------------------------- /src/Caption_dll/CalcMD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption_dll/CalcMD5.h -------------------------------------------------------------------------------- /src/Caption_dll/Caption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption_dll/Caption.cpp -------------------------------------------------------------------------------- /src/Caption_dll/Caption.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption_dll/Caption.def -------------------------------------------------------------------------------- /src/Caption_dll/Caption.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption_dll/Caption.rc -------------------------------------------------------------------------------- /src/Caption_dll/Caption.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption_dll/Caption.vcxproj -------------------------------------------------------------------------------- /src/Caption_dll/Caption.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption_dll/Caption.vcxproj.filters -------------------------------------------------------------------------------- /src/Caption_dll/CaptionMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption_dll/CaptionMain.cpp -------------------------------------------------------------------------------- /src/Caption_dll/CaptionMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption_dll/CaptionMain.h -------------------------------------------------------------------------------- /src/Caption_dll/ColorDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption_dll/ColorDef.h -------------------------------------------------------------------------------- /src/Caption_dll/IniFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption_dll/IniFile.cpp -------------------------------------------------------------------------------- /src/Caption_dll/IniFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption_dll/IniFile.h -------------------------------------------------------------------------------- /src/Caption_dll/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption_dll/resource.h -------------------------------------------------------------------------------- /src/Caption_dll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/Caption_dll/stdafx.h -------------------------------------------------------------------------------- /src/common/Caption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/common/Caption.h -------------------------------------------------------------------------------- /src/common/CaptionDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/common/CaptionDef.h -------------------------------------------------------------------------------- /src/common/CommRoutine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/common/CommRoutine.cpp -------------------------------------------------------------------------------- /src/common/CommRoutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/common/CommRoutine.h -------------------------------------------------------------------------------- /src/common/file_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/common/file_common.h -------------------------------------------------------------------------------- /src/common/file_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/common/file_reader.cpp -------------------------------------------------------------------------------- /src/common/file_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/common/file_reader.h -------------------------------------------------------------------------------- /src/common/packet_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/common/packet_types.h -------------------------------------------------------------------------------- /src/common/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/common/targetver.h -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/config.h -------------------------------------------------------------------------------- /src/doc/Caption2Ass Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/doc/Caption2Ass Readme.txt -------------------------------------------------------------------------------- /src/doc/Caption2Ass 補完計画(Cleanup code)Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/doc/Caption2Ass 補完計画(Cleanup code)Readme.txt -------------------------------------------------------------------------------- /src/doc/Caption2Ass_PCR_src_0108のReadme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/doc/Caption2Ass_PCR_src_0108のReadme.txt -------------------------------------------------------------------------------- /src/extra/UNICODE_cc_gaiji.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/extra/UNICODE_cc_gaiji.ini -------------------------------------------------------------------------------- /src/extra/UNICODE_cc_gaiji2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/extra/UNICODE_cc_gaiji2.ini -------------------------------------------------------------------------------- /src/extra/WinDVD_cc_gaiji.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/extra/WinDVD_cc_gaiji.ini -------------------------------------------------------------------------------- /src/extra/cc_DRCS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/extra/cc_DRCS.ini -------------------------------------------------------------------------------- /src/extra/cc_gaiji.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/extra/cc_gaiji.ini -------------------------------------------------------------------------------- /src/extra/cc_gaiji2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/extra/cc_gaiji2.ini -------------------------------------------------------------------------------- /src/msvcX.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maki-rxrz/Caption2Ass_PCR/HEAD/src/msvcX.props --------------------------------------------------------------------------------