summaryrefslogtreecommitdiffstats
path: root/libvo/vo_macosx.m
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2009-03-14 23:52:45 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2009-03-14 23:52:45 +0200
commitae2faad6669c313b7a5dd318baeee0bffdd47031 (patch)
tree0b383b5dde56d54be4b144e7e23e96bd8bdd43cf /libvo/vo_macosx.m
parentb93f4b7bba0e31d157b74685d3166f74a6c244d7 (diff)
parent642162c07460e439d1d81cda4643dc028ed238e0 (diff)
downloadmpv-ae2faad6669c313b7a5dd318baeee0bffdd47031.tar.bz2
mpv-ae2faad6669c313b7a5dd318baeee0bffdd47031.tar.xz
Merge svn changes up to r28951
Diffstat (limited to 'libvo/vo_macosx.m')
-rw-r--r--libvo/vo_macosx.m25
1 files changed, 10 insertions, 15 deletions
diff --git a/libvo/vo_macosx.m b/libvo/vo_macosx.m
index 2c7bed9e53..eaa08c3316 100644
--- a/libvo/vo_macosx.m
+++ b/libvo/vo_macosx.m
@@ -1,4 +1,7 @@
/*
+ * Mac OS X video output driver
+ * Copyright (c) 2005 Nicolas Plourde <nicolasplourde@gmail.com>
+ *
* This file is part of MPlayer.
*
* MPlayer is free software; you can redistribute it and/or modify
@@ -16,14 +19,6 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-/*
- vo_macosx.m
- by Nicolas Plourde <nicolasplourde@gmail.com>
-
- MPlayer Mac OSX video out module.
- Copyright (c) Nicolas Plourde - 2005
-*/
-
#import "vo_macosx.h"
#include <sys/types.h>
#include <sys/ipc.h>
@@ -99,7 +94,7 @@ static BOOL isLeopardOrLater;
static vo_info_t info =
{
- "Mac OSX Core Video",
+ "Mac OS X Core Video",
"macosx",
"Nicolas Plourde <nicolas.plourde@gmail.com>",
""
@@ -131,7 +126,7 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_
}
else
{
- mp_msg(MSGT_VO, MSGL_FATAL, "Get device error: Device ID %d do not exist, falling back to main device.\n", screen_id);
+ mp_msg(MSGT_VO, MSGL_FATAL, "Get device error: Device ID %d does not exist, falling back to main device.\n", screen_id);
screen_handle = [screen_array objectAtIndex:0];
screen_id = -1;
}
@@ -216,7 +211,7 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_
return 1;
}
- //connnect to mplayerosx
+ //connect to mplayerosx
mplayerosxProxy=[NSConnection rootProxyForConnectionWithRegisteredName:[NSString stringWithCString:buffer_name] host:nil];
if ([mplayerosxProxy conformsToProtocol:@protocol(MPlayerOSXVOProto)]) {
[mplayerosxProxy setProtocolForProxy:@protocol(MPlayerOSXVOProto)];
@@ -361,7 +356,7 @@ static int preinit(const char *arg)
"Example: mplayer -vo macosx:device_id=1:shared_buffer:buffer_name=mybuff\n"
"\nOptions:\n"
" device_id=<0-...>\n"
- " Set screen device id for fullscreen.\n"
+ " Set screen device ID for fullscreen.\n"
" shared_buffer\n"
" Write output to a shared memory buffer instead of displaying it.\n"
" buffer_name=<name>\n"
@@ -812,7 +807,7 @@ static int control(uint32_t request, void *data)
curTime = TickCount()/60;
- //auto hide mouse cursor (and future on-screen control?)
+ //automatically hide mouse cursor (and future on-screen control?)
if(isFullscreen && !mouseHide && !isRootwin)
{
if( ((curTime - lastMouseHide) >= 5) || (lastMouseHide == 0) )
@@ -963,8 +958,8 @@ static int control(uint32_t request, void *data)
return;
[NSApp sendEvent:event];
// Without SDL's bootstrap code (include SDL.h in mplayer.c),
- // on Leopard, we got trouble to get the play window auto focused
- // when app is actived. Following code fix this problem.
+ // on Leopard, we have trouble to get the play window automatically focused
+ // when the app is actived. The Following code fix this problem.
#ifndef CONFIG_SDL
if (isLeopardOrLater && [event type] == NSAppKitDefined
&& [event subtype] == NSApplicationActivatedEventType) {