summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2014-10-08 19:23:47 +0200
committerStefano Pigozzi <stefano.pigozzi@gmail.com>2014-10-08 19:38:35 +0200
commit69fa956f5012f92186e123af37b5bbff8554bbdc (patch)
treef16a5c301740dd4e3d5dc0b5d6842bcfb94e9af9 /DOCS
parent06ecf54fdfe5732bac37111753a0e2e3f40ca7ae (diff)
downloadmpv-69fa956f5012f92186e123af37b5bbff8554bbdc.tar.bz2
mpv-69fa956f5012f92186e123af37b5bbff8554bbdc.tar.xz
cocoa: allow to embed into an arbitrary NSView
Basically add if guards on all the problematic features. I'm still thinking about a better way to handle this, but for the time being, this will do.
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/client_api_examples/cocoabasic.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/DOCS/client_api_examples/cocoabasic.m b/DOCS/client_api_examples/cocoabasic.m
index 5c1a89bc2e..3324f13845 100644
--- a/DOCS/client_api_examples/cocoabasic.m
+++ b/DOCS/client_api_examples/cocoabasic.m
@@ -82,7 +82,7 @@ static void wakeup(void *);
}
#if EMBED_VIEW
- int64_t wid = (intptr_t) self->w;
+ int64_t wid = (intptr_t) [self->w contentView];
check_error(mpv_set_option(mpv, "wid", MPV_FORMAT_INT64, &wid));
#endif