summaryrefslogtreecommitdiffstats
path: root/libmpv/client.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-12-30 22:24:57 +0100
committerwm4 <wm4@nowhere>2014-12-30 22:24:57 +0100
commit50c40b6dedcaf35bd2af68a3535b023c871d1295 (patch)
tree851e86a604f3d00dc100a44cd93911658c32613f /libmpv/client.h
parent63a414c708ea2986386639124fdfa9cdbd58e520 (diff)
downloadmpv-50c40b6dedcaf35bd2af68a3535b023c871d1295.tar.bz2
mpv-50c40b6dedcaf35bd2af68a3535b023c871d1295.tar.xz
client API: qthelper: add a refcounting wrapper around mpv_handle
This is useful to deal with crazy Qt object lifetime issues (the following commit needs it).
Diffstat (limited to 'libmpv/client.h')
-rw-r--r--libmpv/client.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpv/client.h b/libmpv/client.h
index 344bfdd9d5..88009b79ca 100644
--- a/libmpv/client.h
+++ b/libmpv/client.h
@@ -167,7 +167,7 @@ extern "C" {
* relational operators (<, >, <=, >=).
*/
#define MPV_MAKE_VERSION(major, minor) (((major) << 16) | (minor) | 0UL)
-#define MPV_CLIENT_API_VERSION MPV_MAKE_VERSION(1, 11)
+#define MPV_CLIENT_API_VERSION MPV_MAKE_VERSION(1, 12)
/**
* Return the MPV_CLIENT_API_VERSION the mpv source has been compiled with.