├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── COPYRIGHT.txt ├── LICENSE.txt ├── README.md ├── acfu-sdk ├── acfu.h ├── acfu_github.h └── utils │ └── common.h ├── screenshot.png ├── src ├── .gitignore ├── IDI_SCROLL.ico ├── artwork_protocol.cpp ├── artwork_protocol.h ├── foo_mpv.rc ├── foo_mpv.sln ├── foo_mpv.vcxproj ├── foo_mpv.vcxproj.filters ├── libmpv.cpp ├── libmpv.h ├── lua │ ├── osc.lua │ └── osc_love_button.lua ├── main.cpp ├── mainmenu.cpp ├── menu_utils.cpp ├── menu_utils.h ├── mpv_container.cpp ├── mpv_container.h ├── mpv_cui_panel.cpp ├── mpv_dui_panel.cpp ├── mpv_fullscreen.cpp ├── mpv_player.cpp ├── mpv_player.h ├── mpv_popup.cpp ├── preferences.cpp ├── preferences.h ├── resource.h ├── stdafx.cpp ├── stdafx.h ├── thumbnail_chooser.cpp ├── thumbnailer.cpp ├── thumbnailer.h ├── timing_info.cpp ├── timing_info.h └── video.ico ├── triplet └── x86-mpv.cmake └── vcpkg.txt /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | foobar-test/* -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/.gitmodules -------------------------------------------------------------------------------- /COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/COPYRIGHT.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/README.md -------------------------------------------------------------------------------- /acfu-sdk/acfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/acfu-sdk/acfu.h -------------------------------------------------------------------------------- /acfu-sdk/acfu_github.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/acfu-sdk/acfu_github.h -------------------------------------------------------------------------------- /acfu-sdk/utils/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/acfu-sdk/utils/common.h -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/IDI_SCROLL.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/IDI_SCROLL.ico -------------------------------------------------------------------------------- /src/artwork_protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/artwork_protocol.cpp -------------------------------------------------------------------------------- /src/artwork_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/artwork_protocol.h -------------------------------------------------------------------------------- /src/foo_mpv.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/foo_mpv.rc -------------------------------------------------------------------------------- /src/foo_mpv.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/foo_mpv.sln -------------------------------------------------------------------------------- /src/foo_mpv.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/foo_mpv.vcxproj -------------------------------------------------------------------------------- /src/foo_mpv.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/foo_mpv.vcxproj.filters -------------------------------------------------------------------------------- /src/libmpv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/libmpv.cpp -------------------------------------------------------------------------------- /src/libmpv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/libmpv.h -------------------------------------------------------------------------------- /src/lua/osc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/lua/osc.lua -------------------------------------------------------------------------------- /src/lua/osc_love_button.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/lua/osc_love_button.lua -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/mainmenu.cpp -------------------------------------------------------------------------------- /src/menu_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/menu_utils.cpp -------------------------------------------------------------------------------- /src/menu_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/menu_utils.h -------------------------------------------------------------------------------- /src/mpv_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/mpv_container.cpp -------------------------------------------------------------------------------- /src/mpv_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/mpv_container.h -------------------------------------------------------------------------------- /src/mpv_cui_panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/mpv_cui_panel.cpp -------------------------------------------------------------------------------- /src/mpv_dui_panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/mpv_dui_panel.cpp -------------------------------------------------------------------------------- /src/mpv_fullscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/mpv_fullscreen.cpp -------------------------------------------------------------------------------- /src/mpv_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/mpv_player.cpp -------------------------------------------------------------------------------- /src/mpv_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/mpv_player.h -------------------------------------------------------------------------------- /src/mpv_popup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/mpv_popup.cpp -------------------------------------------------------------------------------- /src/preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/preferences.cpp -------------------------------------------------------------------------------- /src/preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/preferences.h -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | // PCH ^ 3 | -------------------------------------------------------------------------------- /src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/stdafx.h -------------------------------------------------------------------------------- /src/thumbnail_chooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/thumbnail_chooser.cpp -------------------------------------------------------------------------------- /src/thumbnailer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/thumbnailer.cpp -------------------------------------------------------------------------------- /src/thumbnailer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/thumbnailer.h -------------------------------------------------------------------------------- /src/timing_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/timing_info.cpp -------------------------------------------------------------------------------- /src/timing_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/timing_info.h -------------------------------------------------------------------------------- /src/video.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/src/video.ico -------------------------------------------------------------------------------- /triplet/x86-mpv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/triplet/x86-mpv.cmake -------------------------------------------------------------------------------- /vcpkg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sammoth/foo_mpv/HEAD/vcpkg.txt --------------------------------------------------------------------------------