├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── docs └── subtext.rst ├── meson.build ├── msvc_project ├── SubText.sln ├── SubText.vcxproj └── SubText.vcxproj.filters └── src ├── common.c ├── common.h ├── image.cpp ├── text.c ├── toass.cpp └── toutf8.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapoursynth/subtext/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapoursynth/subtext/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapoursynth/subtext/HEAD/LICENSE -------------------------------------------------------------------------------- /docs/subtext.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapoursynth/subtext/HEAD/docs/subtext.rst -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapoursynth/subtext/HEAD/meson.build -------------------------------------------------------------------------------- /msvc_project/SubText.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapoursynth/subtext/HEAD/msvc_project/SubText.sln -------------------------------------------------------------------------------- /msvc_project/SubText.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapoursynth/subtext/HEAD/msvc_project/SubText.vcxproj -------------------------------------------------------------------------------- /msvc_project/SubText.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapoursynth/subtext/HEAD/msvc_project/SubText.vcxproj.filters -------------------------------------------------------------------------------- /src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapoursynth/subtext/HEAD/src/common.c -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapoursynth/subtext/HEAD/src/common.h -------------------------------------------------------------------------------- /src/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapoursynth/subtext/HEAD/src/image.cpp -------------------------------------------------------------------------------- /src/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapoursynth/subtext/HEAD/src/text.c -------------------------------------------------------------------------------- /src/toass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapoursynth/subtext/HEAD/src/toass.cpp -------------------------------------------------------------------------------- /src/toutf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapoursynth/subtext/HEAD/src/toutf8.c --------------------------------------------------------------------------------