summaryrefslogtreecommitdiffstats
path: root/video/out/cocoa_common.m
diff options
context:
space:
mode:
authorAkemi <der.richter@gmx.de>2017-03-26 21:46:28 +0200
committerAkemi <der.richter@gmx.de>2017-08-18 19:47:47 +0200
commit344b75f52da349ab293ee2bb7f48604eabcffb0f (patch)
treefe93986060a65603b51949ccd9ce354306253c61 /video/out/cocoa_common.m
parente0a2d152163977fdc2a48ac1bd4144614a1e6f25 (diff)
downloadmpv-344b75f52da349ab293ee2bb7f48604eabcffb0f.tar.bz2
mpv-344b75f52da349ab293ee2bb7f48604eabcffb0f.tar.xz
osx: code cleanups and cosmetic fixes
silence build warnings, clean up code style and remove unused code.
Diffstat (limited to 'video/out/cocoa_common.m')
-rw-r--r--video/out/cocoa_common.m2
1 files changed, 0 insertions, 2 deletions
diff --git a/video/out/cocoa_common.m b/video/out/cocoa_common.m
index b535de279d..e0f0f785e0 100644
--- a/video/out/cocoa_common.m
+++ b/video/out/cocoa_common.m
@@ -129,7 +129,6 @@ static void run_on_main_thread(struct vo *vo, void(^block)(void))
static void queue_new_video_size(struct vo *vo, int w, int h)
{
struct vo_cocoa_state *s = vo->cocoa;
- struct mp_vo_opts *opts = vo->opts;
id<MpvWindowUpdate> win = (id<MpvWindowUpdate>) s->window;
NSRect r = NSMakeRect(0, 0, w, h);
r = [s->current_screen convertRectFromBacking:r];
@@ -955,7 +954,6 @@ int vo_cocoa_control(struct vo *vo, int *events, int request, void *arg)
- (void)performAsyncResize:(NSSize)size
{
- struct vo_cocoa_state *s = self.vout->cocoa;
vo_cocoa_resize_redraw(self.vout, size.width, size.height);
}