summaryrefslogtreecommitdiffstats
path: root/osdep
diff options
context:
space:
mode:
authorAkemi <der.richter@gmx.de>2019-01-27 18:38:22 +0100
committerJan Ekström <jeebjp@gmail.com>2019-04-02 01:46:52 +0300
commit48a463d641697930b332a00cd9b807a3f6c170d9 (patch)
treed38dabd576a546f45995545106132c7be3663c45 /osdep
parent61005e10ea40b122fc6546cf3094a6cd5fbeb808 (diff)
downloadmpv-48a463d641697930b332a00cd9b807a3f6c170d9.tar.bz2
mpv-48a463d641697930b332a00cd9b807a3f6c170d9.tar.xz
cocoa-cb: wakeup vo when new events are available
new events were added but not fetched by the vo, because we didn't signal the vo that new events were available. actually wakeup the vo when new events are available.
Diffstat (limited to 'osdep')
-rw-r--r--osdep/macOS_mpv_helper.swift1
1 files changed, 1 insertions, 0 deletions
diff --git a/osdep/macOS_mpv_helper.swift b/osdep/macOS_mpv_helper.swift
index 8f6221d87c..20407968e2 100644
--- a/osdep/macOS_mpv_helper.swift
+++ b/osdep/macOS_mpv_helper.swift
@@ -34,6 +34,7 @@ class MPVHelper: NSObject {
var mpvLog: OpaquePointer?
var inputContext: OpaquePointer?
var mpctx: UnsafeMutablePointer<MPContext>?
+ var vo: UnsafeMutablePointer<vo>?
var macOpts: macos_opts?
var fbo: GLint = 1
let deinitLock = NSLock()