├── .github ├── dependabot.yml └── workflows │ ├── clean.yml │ ├── llvm.yml │ ├── mpv.yml │ └── toolchain.yml ├── LICENSE ├── README.md ├── action ├── build_toolchain │ └── action.yml └── resave_cache │ └── action.yml ├── compile-lgpl-libmpv.patch ├── patch ├── 0000-libarchive-pass-correct-cflags.patch ├── 0001-mpv-copy-mpv-register-and-mpv-unregister-helpers.patch ├── 0002-openssl-use-winstore-by-default.patch └── 0003-fontconfig-rebase-patch.patch ├── patch_pr └── 0000-mpv-add-patch.patch ├── prunetags.sh └── use-librempeg.patch /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongfly/mpv-winbuild/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/clean.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongfly/mpv-winbuild/HEAD/.github/workflows/clean.yml -------------------------------------------------------------------------------- /.github/workflows/llvm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongfly/mpv-winbuild/HEAD/.github/workflows/llvm.yml -------------------------------------------------------------------------------- /.github/workflows/mpv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongfly/mpv-winbuild/HEAD/.github/workflows/mpv.yml -------------------------------------------------------------------------------- /.github/workflows/toolchain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongfly/mpv-winbuild/HEAD/.github/workflows/toolchain.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongfly/mpv-winbuild/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongfly/mpv-winbuild/HEAD/README.md -------------------------------------------------------------------------------- /action/build_toolchain/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongfly/mpv-winbuild/HEAD/action/build_toolchain/action.yml -------------------------------------------------------------------------------- /action/resave_cache/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongfly/mpv-winbuild/HEAD/action/resave_cache/action.yml -------------------------------------------------------------------------------- /compile-lgpl-libmpv.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongfly/mpv-winbuild/HEAD/compile-lgpl-libmpv.patch -------------------------------------------------------------------------------- /patch/0000-libarchive-pass-correct-cflags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongfly/mpv-winbuild/HEAD/patch/0000-libarchive-pass-correct-cflags.patch -------------------------------------------------------------------------------- /patch/0001-mpv-copy-mpv-register-and-mpv-unregister-helpers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongfly/mpv-winbuild/HEAD/patch/0001-mpv-copy-mpv-register-and-mpv-unregister-helpers.patch -------------------------------------------------------------------------------- /patch/0002-openssl-use-winstore-by-default.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongfly/mpv-winbuild/HEAD/patch/0002-openssl-use-winstore-by-default.patch -------------------------------------------------------------------------------- /patch/0003-fontconfig-rebase-patch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongfly/mpv-winbuild/HEAD/patch/0003-fontconfig-rebase-patch.patch -------------------------------------------------------------------------------- /patch_pr/0000-mpv-add-patch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongfly/mpv-winbuild/HEAD/patch_pr/0000-mpv-add-patch.patch -------------------------------------------------------------------------------- /prunetags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongfly/mpv-winbuild/HEAD/prunetags.sh -------------------------------------------------------------------------------- /use-librempeg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongfly/mpv-winbuild/HEAD/use-librempeg.patch --------------------------------------------------------------------------------