├── .clang-format ├── .github ├── containers │ ├── fedora-common │ │ └── build.sh │ └── fedora-template │ │ ├── Dockerfile │ │ └── build.sh └── workflows │ ├── clang-format.yml │ ├── docker-build.yml │ └── main.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── ci ├── ci_includes.cmd.in ├── ci_includes.sh.in ├── forum-update-info.json ├── macos │ ├── archive-brew.py │ ├── change-rpath.sh │ ├── install-packagesbuild.sh │ ├── install-pango-arm64.sh │ ├── install-pango-x86_64.sh │ └── test-dylib.sh ├── plugin.spec └── windows │ └── package-windows.cmd ├── cmake ├── FindCairo.cmake ├── FindGLib.cmake ├── FindPango.cmake ├── FindPangocairo.cmake ├── FindPangoft2.cmake ├── FindPangowin32.cmake ├── ObsPluginHelpers.cmake └── bundle │ └── macos │ ├── Plugin-Info.plist.in │ └── entitlements.plist ├── data ├── locale │ └── en-US.ini └── textalpha.effect ├── doc └── properties.md ├── installer ├── installer-Windows.iss.in └── installer-macOS.pkgproj.in ├── packaging └── debian │ ├── changelog │ ├── control │ ├── copyright │ ├── rules │ └── source │ └── format ├── src ├── obs-text-pthread-main.c ├── obs-text-pthread-thread.c ├── obs-text-pthread.h └── plugin-macros.h.in └── tools └── list2mlt.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/containers/fedora-common/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/.github/containers/fedora-common/build.sh -------------------------------------------------------------------------------- /.github/containers/fedora-template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/.github/containers/fedora-template/Dockerfile -------------------------------------------------------------------------------- /.github/containers/fedora-template/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/.github/containers/fedora-template/build.sh -------------------------------------------------------------------------------- /.github/workflows/clang-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/.github/workflows/clang-format.yml -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/README.md -------------------------------------------------------------------------------- /ci/ci_includes.cmd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/ci/ci_includes.cmd.in -------------------------------------------------------------------------------- /ci/ci_includes.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/ci/ci_includes.sh.in -------------------------------------------------------------------------------- /ci/forum-update-info.json: -------------------------------------------------------------------------------- 1 | { 2 | "plugin_url": "https://obsproject.com/forum/resources/pthread-text.1287/" 3 | } 4 | -------------------------------------------------------------------------------- /ci/macos/archive-brew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/ci/macos/archive-brew.py -------------------------------------------------------------------------------- /ci/macos/change-rpath.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/ci/macos/change-rpath.sh -------------------------------------------------------------------------------- /ci/macos/install-packagesbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/ci/macos/install-packagesbuild.sh -------------------------------------------------------------------------------- /ci/macos/install-pango-arm64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/ci/macos/install-pango-arm64.sh -------------------------------------------------------------------------------- /ci/macos/install-pango-x86_64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/ci/macos/install-pango-x86_64.sh -------------------------------------------------------------------------------- /ci/macos/test-dylib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/ci/macos/test-dylib.sh -------------------------------------------------------------------------------- /ci/plugin.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/ci/plugin.spec -------------------------------------------------------------------------------- /ci/windows/package-windows.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/ci/windows/package-windows.cmd -------------------------------------------------------------------------------- /cmake/FindCairo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/cmake/FindCairo.cmake -------------------------------------------------------------------------------- /cmake/FindGLib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/cmake/FindGLib.cmake -------------------------------------------------------------------------------- /cmake/FindPango.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/cmake/FindPango.cmake -------------------------------------------------------------------------------- /cmake/FindPangocairo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/cmake/FindPangocairo.cmake -------------------------------------------------------------------------------- /cmake/FindPangoft2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/cmake/FindPangoft2.cmake -------------------------------------------------------------------------------- /cmake/FindPangowin32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/cmake/FindPangowin32.cmake -------------------------------------------------------------------------------- /cmake/ObsPluginHelpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/cmake/ObsPluginHelpers.cmake -------------------------------------------------------------------------------- /cmake/bundle/macos/Plugin-Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/cmake/bundle/macos/Plugin-Info.plist.in -------------------------------------------------------------------------------- /cmake/bundle/macos/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/cmake/bundle/macos/entitlements.plist -------------------------------------------------------------------------------- /data/locale/en-US.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/data/locale/en-US.ini -------------------------------------------------------------------------------- /data/textalpha.effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/data/textalpha.effect -------------------------------------------------------------------------------- /doc/properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/doc/properties.md -------------------------------------------------------------------------------- /installer/installer-Windows.iss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/installer/installer-Windows.iss.in -------------------------------------------------------------------------------- /installer/installer-macOS.pkgproj.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/installer/installer-macOS.pkgproj.in -------------------------------------------------------------------------------- /packaging/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/packaging/debian/changelog -------------------------------------------------------------------------------- /packaging/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/packaging/debian/control -------------------------------------------------------------------------------- /packaging/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/packaging/debian/copyright -------------------------------------------------------------------------------- /packaging/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/packaging/debian/rules -------------------------------------------------------------------------------- /packaging/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /src/obs-text-pthread-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/src/obs-text-pthread-main.c -------------------------------------------------------------------------------- /src/obs-text-pthread-thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/src/obs-text-pthread-thread.c -------------------------------------------------------------------------------- /src/obs-text-pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/src/obs-text-pthread.h -------------------------------------------------------------------------------- /src/plugin-macros.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/src/plugin-macros.h.in -------------------------------------------------------------------------------- /tools/list2mlt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norihiro/obs-text-pthread/HEAD/tools/list2mlt.py --------------------------------------------------------------------------------