summaryrefslogtreecommitdiffstats
path: root/libmpv
diff options
context:
space:
mode:
authorder richter <der.richter@gmx.de>2024-02-18 17:43:30 +0100
committerder richter <der.richter@gmx.de>2024-02-20 20:42:02 +0100
commit0e441525cfc2c0d56b6d4a5fc67016d7e29d1b2c (patch)
tree535c3b5116e6e1a9066597586c62b8a2d05ca388 /libmpv
parent4a563a6390e72b9ea13a9cd72d0eb00b70ea2b01 (diff)
downloadmpv-0e441525cfc2c0d56b6d4a5fc67016d7e29d1b2c.tar.bz2
mpv-0e441525cfc2c0d56b6d4a5fc67016d7e29d1b2c.tar.xz
vo: make libmpv last in the auto-probing order for cocoa-cb only
this partially reverts commit 7b5a258. back then the only properly working vo on macOS was cocoa-cb (libmpv). it would always use the deprecated opengl cocoa backend or no vo at all. because of that libmpv was moved to the top of the auto-probing order, so the preferred vo was used on macOS only. we now have a working vulkan gpu/gpu-next backend on macOS which should be the new default vo. though disabling the auto-probing again for libmpv would probably cause the undesired behaviour on macOS that cocoa-cb would never be auto selected again. especially if not build with vulkan support or without vulkan driver on macOS, this would lead to no video output at all. so instead of completely reverting the mentioned commit, we instead move libmpv to the bottom of the auto-probing order but only auto select it when mpv was built with cocoa-cb support. this restores the previous behaviour on all other platforms besides macOS, but also lets us auto select cocoa-cb if supported.
Diffstat (limited to 'libmpv')
-rw-r--r--libmpv/client.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpv/client.h b/libmpv/client.h
index 0a548a58eb..56235e1120 100644
--- a/libmpv/client.h
+++ b/libmpv/client.h
@@ -248,7 +248,7 @@ extern "C" {
* relational operators (<, >, <=, >=).
*/
#define MPV_MAKE_VERSION(major, minor) (((major) << 16) | (minor) | 0UL)
-#define MPV_CLIENT_API_VERSION MPV_MAKE_VERSION(2, 2)
+#define MPV_CLIENT_API_VERSION MPV_MAKE_VERSION(2, 3)
/**
* The API user is allowed to "#define MPV_ENABLE_DEPRECATED 0" before