Mercurial > mplayer.hg
annotate libvo/vo_corevideo.m @ 29296:8fa7fb4ae9ef
Add const where appropriate, also gets rid of a compiler warning.
author | reimar |
---|---|
date | Mon, 01 Jun 2009 09:43:32 +0000 |
parents | c95bad660986 |
children | 9c8f8e375823 |
rev | line source |
---|---|
28446
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28306
diff
changeset
|
1 /* |
29210 | 2 * CoreVideo video output driver |
28836 | 3 * Copyright (c) 2005 Nicolas Plourde <nicolasplourde@gmail.com> |
4 * | |
28446
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28306
diff
changeset
|
5 * This file is part of MPlayer. |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28306
diff
changeset
|
6 * |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28306
diff
changeset
|
7 * MPlayer is free software; you can redistribute it and/or modify |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28306
diff
changeset
|
8 * it under the terms of the GNU General Public License as published by |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28306
diff
changeset
|
9 * the Free Software Foundation; either version 2 of the License, or |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28306
diff
changeset
|
10 * (at your option) any later version. |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28306
diff
changeset
|
11 * |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28306
diff
changeset
|
12 * MPlayer is distributed in the hope that it will be useful, |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28306
diff
changeset
|
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28306
diff
changeset
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28306
diff
changeset
|
15 * GNU General Public License for more details. |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28306
diff
changeset
|
16 * |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28306
diff
changeset
|
17 * You should have received a copy of the GNU General Public License along |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28306
diff
changeset
|
18 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28306
diff
changeset
|
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28306
diff
changeset
|
20 */ |
7681eab10aea
Add standard license headers, unify header formatting.
diego
parents:
28306
diff
changeset
|
21 |
29210 | 22 #import "vo_corevideo.h" |
16385 | 23 #include <sys/types.h> |
24 #include <sys/ipc.h> | |
28016
3b8e66828e10
use mmap instead of shmat for MPlayerOSX, patch by Adrian Stutz<adrian@sttz.ch>
nplourde
parents:
28010
diff
changeset
|
25 #include <sys/mman.h> |
28077 | 26 #include <unistd.h> |
27988 | 27 #include <CoreServices/CoreServices.h> |
28 //special workaround for Apple bug #6267445 | |
29 //(OSServices Power API disabled in OSServices.h for 64bit systems) | |
30 #ifndef __POWER__ | |
31 #include <CoreServices/../Frameworks/OSServices.framework/Headers/Power.h> | |
32 #endif | |
15289 | 33 |
34 //MPLAYER | |
35 #include "config.h" | |
36 #include "fastmemcpy.h" | |
37 #include "video_out.h" | |
38 #include "video_out_internal.h" | |
39 #include "aspect.h" | |
40 #include "mp_msg.h" | |
41 #include "m_option.h" | |
28075
ca9badc94740
#include appropriate headers instead of locally declaring function prototypes.
diego
parents:
28051
diff
changeset
|
42 #include "mp_fifo.h" |
ca9badc94740
#include appropriate headers instead of locally declaring function prototypes.
diego
parents:
28051
diff
changeset
|
43 #include "libvo/sub.h" |
28130
b5898cb411da
Replace vo_macosx's custom options parsing with a subopt_parse()-based one
gpoirier
parents:
28077
diff
changeset
|
44 #include "subopt-helper.h" |
15289 | 45 |
46 #include "input/input.h" | |
47 #include "input/mouse.h" | |
48 | |
49 #include "osdep/keycodes.h" | |
50 | |
51 //Cocoa | |
25157
cf3b6015735d
Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents:
25137
diff
changeset
|
52 NSDistantObject *mplayerosxProxy; |
cf3b6015735d
Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents:
25137
diff
changeset
|
53 id <MPlayerOSXVOProto> mplayerosxProto; |
15611 | 54 MPlayerOpenGLView *mpGLView; |
15289 | 55 NSAutoreleasePool *autoreleasepool; |
56 OSType pixelFormat; | |
57 | |
16385 | 58 //shared memory |
28016
3b8e66828e10
use mmap instead of shmat for MPlayerOSX, patch by Adrian Stutz<adrian@sttz.ch>
nplourde
parents:
28010
diff
changeset
|
59 int shm_fd; |
16385 | 60 BOOL shared_buffer = false; |
28180
781ef511a767
Add an option to vo_macosx to set a custom buffer_name.
gpoirier
parents:
28130
diff
changeset
|
61 #define DEFAULT_BUFFER_NAME "mplayerosx" |
781ef511a767
Add an option to vo_macosx to set a custom buffer_name.
gpoirier
parents:
28130
diff
changeset
|
62 static char *buffer_name; |
16385 | 63 |
15728 | 64 //Screen |
28306 | 65 int screen_id = -1; |
15728 | 66 NSRect screen_frame; |
67 NSScreen *screen_handle; | |
68 NSArray *screen_array; | |
15289 | 69 |
70 //image | |
71 unsigned char *image_data; | |
25180 | 72 // For double buffering |
73 static uint8_t image_page = 0; | |
74 static unsigned char *image_datas[2]; | |
75 | |
15289 | 76 static uint32_t image_width; |
77 static uint32_t image_height; | |
78 static uint32_t image_depth; | |
79 static uint32_t image_bytes; | |
80 static uint32_t image_format; | |
81 | |
82 //vo | |
83 static int isFullscreen; | |
15320 | 84 static int isOntop; |
15327 | 85 static int isRootwin; |
15289 | 86 extern float monitor_aspect; |
87 extern float movie_aspect; | |
88 static float old_movie_aspect; | |
25446 | 89 extern int enable_mouse_movements; |
15289 | 90 |
15731 | 91 static float winAlpha = 1; |
15289 | 92 static int int_pause = 0; |
93 | |
25179
6e8b40d412f0
Fix play window not get actived problem on Leopard.
ulion
parents:
25178
diff
changeset
|
94 static BOOL isLeopardOrLater; |
6e8b40d412f0
Fix play window not get actived problem on Leopard.
ulion
parents:
25178
diff
changeset
|
95 |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
96 static vo_info_t info = |
15289 | 97 { |
28837 | 98 "Mac OS X Core Video", |
29210 | 99 "corevideo", |
15289 | 100 "Nicolas Plourde <nicolas.plourde@gmail.com>", |
101 "" | |
102 }; | |
103 | |
29210 | 104 LIBVO_EXTERN(corevideo) |
15289 | 105 |
106 static void draw_alpha(int x0, int y0, int w, int h, unsigned char *src, unsigned char *srca, int stride) | |
107 { | |
108 switch (image_format) | |
109 { | |
110 case IMGFMT_RGB32: | |
111 vo_draw_alpha_rgb32(w,h,src,srca,stride,image_data+4*(y0*image_width+x0),4*image_width); | |
112 break; | |
113 case IMGFMT_YUY2: | |
114 vo_draw_alpha_yuy2(w,h,src,srca,stride,image_data + (x0 + y0 * image_width) * 2,image_width*2); | |
115 break; | |
116 } | |
117 } | |
118 | |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
16145
diff
changeset
|
119 static int config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t flags, char *title, uint32_t format) |
15289 | 120 { |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
121 |
15728 | 122 //init screen |
123 screen_array = [NSScreen screens]; | |
29177
1dfd99eb3280
Fix a signedness issue that caused a warning to be wrongfully printed at runtime.
gpoirier
parents:
29170
diff
changeset
|
124 if(screen_id < (int)[screen_array count]) |
15289 | 125 { |
28306 | 126 screen_handle = [screen_array objectAtIndex:(screen_id < 0 ? 0 : screen_id)]; |
15289 | 127 } |
15728 | 128 else |
129 { | |
29210 | 130 mp_msg(MSGT_VO, MSGL_INFO, "[vo_corevideo] Device ID %d does not exist, falling back to main device\n", screen_id); |
15728 | 131 screen_handle = [screen_array objectAtIndex:0]; |
28306 | 132 screen_id = -1; |
15728 | 133 } |
134 screen_frame = [screen_handle frame]; | |
25414
5c03a9bdf220
Record screen size and display size in vo_ variables.
ulion
parents:
25413
diff
changeset
|
135 vo_screenwidth = screen_frame.size.width; |
5c03a9bdf220
Record screen size and display size in vo_ variables.
ulion
parents:
25413
diff
changeset
|
136 vo_screenheight = screen_frame.size.height; |
16385 | 137 |
15289 | 138 //misc mplayer setup |
139 image_width = width; | |
140 image_height = height; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
141 switch (image_format) |
15289 | 142 { |
143 case IMGFMT_BGR32: | |
144 case IMGFMT_RGB32: | |
145 image_depth = 32; | |
146 break; | |
16385 | 147 case IMGFMT_YUY2: |
15289 | 148 image_depth = 16; |
149 break; | |
150 } | |
151 image_bytes = (image_depth + 7) / 8; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
152 |
16385 | 153 if(!shared_buffer) |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
154 { |
25120
9b4ca4dc1294
Fix a memory leak when working in shared_buffer mode.
ulion
parents:
25114
diff
changeset
|
155 image_data = malloc(image_width*image_height*image_bytes); |
25180 | 156 image_datas[0] = image_data; |
157 if (vo_doublebuffering) | |
158 image_datas[1] = malloc(image_width*image_height*image_bytes); | |
159 image_page = 0; | |
25120
9b4ca4dc1294
Fix a memory leak when working in shared_buffer mode.
ulion
parents:
25114
diff
changeset
|
160 |
16385 | 161 monitor_aspect = (float)screen_frame.size.width/(float)screen_frame.size.height; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
162 |
16385 | 163 //set aspect |
164 panscan_init(); | |
165 aspect_save_orig(width,height); | |
166 aspect_save_prescale(d_width,d_height); | |
167 aspect_save_screenres(screen_frame.size.width, screen_frame.size.height); | |
168 aspect((int *)&d_width,(int *)&d_height,A_NOZOOM); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
169 |
16385 | 170 movie_aspect = (float)d_width/(float)d_height; |
171 old_movie_aspect = movie_aspect; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
172 |
16385 | 173 vo_fs = flags & VOFLAG_FULLSCREEN; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
174 |
16385 | 175 //config OpenGL View |
176 [mpGLView config]; | |
177 [mpGLView reshape]; | |
178 } | |
179 else | |
180 { | |
29210 | 181 mp_msg(MSGT_VO, MSGL_INFO, "[vo_corevideo] writing output to a shared buffer " |
29170
9d40283d9a5d
Unify error message output and update error messages.
diego
parents:
29137
diff
changeset
|
182 "named \"%s\"\n",buffer_name); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
183 |
16385 | 184 movie_aspect = (float)d_width/(float)d_height; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
185 |
28016
3b8e66828e10
use mmap instead of shmat for MPlayerOSX, patch by Adrian Stutz<adrian@sttz.ch>
nplourde
parents:
28010
diff
changeset
|
186 // create shared memory |
28180
781ef511a767
Add an option to vo_macosx to set a custom buffer_name.
gpoirier
parents:
28130
diff
changeset
|
187 shm_fd = shm_open(buffer_name, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR); |
28016
3b8e66828e10
use mmap instead of shmat for MPlayerOSX, patch by Adrian Stutz<adrian@sttz.ch>
nplourde
parents:
28010
diff
changeset
|
188 if (shm_fd == -1) |
16385 | 189 { |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
190 mp_msg(MSGT_VO, MSGL_FATAL, |
29210 | 191 "[vo_corevideo] failed to open shared memory. Error: %s\n", strerror(errno)); |
16385 | 192 return 1; |
193 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
194 |
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
195 |
28016
3b8e66828e10
use mmap instead of shmat for MPlayerOSX, patch by Adrian Stutz<adrian@sttz.ch>
nplourde
parents:
28010
diff
changeset
|
196 if (ftruncate(shm_fd, image_width*image_height*image_bytes) == -1) |
3b8e66828e10
use mmap instead of shmat for MPlayerOSX, patch by Adrian Stutz<adrian@sttz.ch>
nplourde
parents:
28010
diff
changeset
|
197 { |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
198 mp_msg(MSGT_VO, MSGL_FATAL, |
29210 | 199 "[vo_corevideo] failed to size shared memory, possibly already in use. Error: %s\n", strerror(errno)); |
28180
781ef511a767
Add an option to vo_macosx to set a custom buffer_name.
gpoirier
parents:
28130
diff
changeset
|
200 shm_unlink(buffer_name); |
16385 | 201 return 1; |
202 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
203 |
28016
3b8e66828e10
use mmap instead of shmat for MPlayerOSX, patch by Adrian Stutz<adrian@sttz.ch>
nplourde
parents:
28010
diff
changeset
|
204 image_data = mmap(NULL, image_width*image_height*image_bytes, |
3b8e66828e10
use mmap instead of shmat for MPlayerOSX, patch by Adrian Stutz<adrian@sttz.ch>
nplourde
parents:
28010
diff
changeset
|
205 PROT_READ | PROT_WRITE, MAP_SHARED, shm_fd, 0); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
206 |
28016
3b8e66828e10
use mmap instead of shmat for MPlayerOSX, patch by Adrian Stutz<adrian@sttz.ch>
nplourde
parents:
28010
diff
changeset
|
207 if (image_data == MAP_FAILED) |
3b8e66828e10
use mmap instead of shmat for MPlayerOSX, patch by Adrian Stutz<adrian@sttz.ch>
nplourde
parents:
28010
diff
changeset
|
208 { |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
209 mp_msg(MSGT_VO, MSGL_FATAL, |
29210 | 210 "[vo_corevideo] failed to map shared memory. Error: %s\n", strerror(errno)); |
28180
781ef511a767
Add an option to vo_macosx to set a custom buffer_name.
gpoirier
parents:
28130
diff
changeset
|
211 shm_unlink(buffer_name); |
28016
3b8e66828e10
use mmap instead of shmat for MPlayerOSX, patch by Adrian Stutz<adrian@sttz.ch>
nplourde
parents:
28010
diff
changeset
|
212 return 1; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
213 } |
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
214 |
28837 | 215 //connect to mplayerosx |
28180
781ef511a767
Add an option to vo_macosx to set a custom buffer_name.
gpoirier
parents:
28130
diff
changeset
|
216 mplayerosxProxy=[NSConnection rootProxyForConnectionWithRegisteredName:[NSString stringWithCString:buffer_name] host:nil]; |
25157
cf3b6015735d
Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents:
25137
diff
changeset
|
217 if ([mplayerosxProxy conformsToProtocol:@protocol(MPlayerOSXVOProto)]) { |
cf3b6015735d
Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents:
25137
diff
changeset
|
218 [mplayerosxProxy setProtocolForProxy:@protocol(MPlayerOSXVOProto)]; |
cf3b6015735d
Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents:
25137
diff
changeset
|
219 mplayerosxProto = (id <MPlayerOSXVOProto>)mplayerosxProxy; |
cf3b6015735d
Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents:
25137
diff
changeset
|
220 [mplayerosxProto startWithWidth: image_width withHeight: image_height withBytes: image_bytes withAspect:(int)(movie_aspect*100)]; |
cf3b6015735d
Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents:
25137
diff
changeset
|
221 } |
cf3b6015735d
Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents:
25137
diff
changeset
|
222 else { |
cf3b6015735d
Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents:
25137
diff
changeset
|
223 [mplayerosxProxy release]; |
cf3b6015735d
Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents:
25137
diff
changeset
|
224 mplayerosxProxy = nil; |
cf3b6015735d
Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents:
25137
diff
changeset
|
225 mplayerosxProto = nil; |
cf3b6015735d
Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents:
25137
diff
changeset
|
226 } |
16385 | 227 } |
15289 | 228 return 0; |
229 } | |
230 | |
231 static void check_events(void) | |
232 { | |
29272
c95bad660986
When used with shared_buffer, there's no need for a NSApp object, which causes MPlayer to be marked as unresponsive.
adrian
parents:
29271
diff
changeset
|
233 if (mpGLView) |
c95bad660986
When used with shared_buffer, there's no need for a NSApp object, which causes MPlayer to be marked as unresponsive.
adrian
parents:
29271
diff
changeset
|
234 [mpGLView check_events]; |
15289 | 235 } |
236 | |
237 static void draw_osd(void) | |
238 { | |
239 vo_draw_text(image_width, image_height, draw_alpha); | |
240 } | |
241 | |
242 static void flip_page(void) | |
243 { | |
29271
82b6fbc72099
When used with shared_buffer, autorelease in each flip_page so objects don't accumulate until exit.
adrian
parents:
29263
diff
changeset
|
244 if(shared_buffer) { |
82b6fbc72099
When used with shared_buffer, autorelease in each flip_page so objects don't accumulate until exit.
adrian
parents:
29263
diff
changeset
|
245 NSAutoreleasePool *pool = [NSAutoreleasePool new]; |
25157
cf3b6015735d
Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents:
25137
diff
changeset
|
246 [mplayerosxProto render]; |
29271
82b6fbc72099
When used with shared_buffer, autorelease in each flip_page so objects don't accumulate until exit.
adrian
parents:
29263
diff
changeset
|
247 [pool release]; |
82b6fbc72099
When used with shared_buffer, autorelease in each flip_page so objects don't accumulate until exit.
adrian
parents:
29263
diff
changeset
|
248 } else { |
25114
bed4188998ca
Move the setCurrentTexture call into flip_page(), fix osd flicker problem.
ulion
parents:
25078
diff
changeset
|
249 [mpGLView setCurrentTexture]; |
16385 | 250 [mpGLView render]; |
25180 | 251 if (vo_doublebuffering) { |
252 image_page = 1 - image_page; | |
253 image_data = image_datas[image_page]; | |
254 } | |
25114
bed4188998ca
Move the setCurrentTexture call into flip_page(), fix osd flicker problem.
ulion
parents:
25078
diff
changeset
|
255 } |
15289 | 256 } |
257 | |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
16145
diff
changeset
|
258 static int draw_slice(uint8_t *src[], int stride[], int w,int h,int x,int y) |
15289 | 259 { |
260 return 0; | |
261 } | |
262 | |
263 | |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
16145
diff
changeset
|
264 static int draw_frame(uint8_t *src[]) |
15289 | 265 { |
266 switch (image_format) | |
267 { | |
268 case IMGFMT_BGR32: | |
269 case IMGFMT_RGB32: | |
23457
a124f3abc1ec
Replace implicit use of fast_memcpy via macro by explicit use to allow
reimar
parents:
23381
diff
changeset
|
270 fast_memcpy(image_data, src[0], image_width*image_height*image_bytes); |
15289 | 271 break; |
272 | |
273 case IMGFMT_YUY2: | |
274 memcpy_pic(image_data, src[0], image_width * 2, image_height, image_width * 2, image_width * 2); | |
275 break; | |
276 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
277 |
15289 | 278 return 0; |
279 } | |
280 | |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
16145
diff
changeset
|
281 static int query_format(uint32_t format) |
15289 | 282 { |
283 image_format = format; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
284 |
15289 | 285 switch(format) |
286 { | |
287 case IMGFMT_YUY2: | |
288 pixelFormat = kYUVSPixelFormat; | |
289 return VFCAP_CSP_SUPPORTED | VFCAP_CSP_SUPPORTED_BY_HW | VFCAP_OSD | VFCAP_HWSCALE_UP | VFCAP_HWSCALE_DOWN; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
290 |
15289 | 291 case IMGFMT_RGB32: |
292 case IMGFMT_BGR32: | |
293 pixelFormat = k32ARGBPixelFormat; | |
294 return VFCAP_CSP_SUPPORTED | VFCAP_CSP_SUPPORTED_BY_HW | VFCAP_OSD | VFCAP_HWSCALE_UP | VFCAP_HWSCALE_DOWN; | |
295 } | |
296 return 0; | |
297 } | |
298 | |
299 static void uninit(void) | |
300 { | |
16385 | 301 if(shared_buffer) |
302 { | |
25157
cf3b6015735d
Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents:
25137
diff
changeset
|
303 [mplayerosxProto stop]; |
cf3b6015735d
Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents:
25137
diff
changeset
|
304 mplayerosxProto = nil; |
cf3b6015735d
Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents:
25137
diff
changeset
|
305 [mplayerosxProxy release]; |
cf3b6015735d
Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents:
25137
diff
changeset
|
306 mplayerosxProxy = nil; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
307 |
28016
3b8e66828e10
use mmap instead of shmat for MPlayerOSX, patch by Adrian Stutz<adrian@sttz.ch>
nplourde
parents:
28010
diff
changeset
|
308 if (munmap(image_data, image_width*image_height*image_bytes) == -1) |
29210 | 309 mp_msg(MSGT_VO, MSGL_FATAL, "[vo_corevideo] uninit: munmap failed. Error: %s\n", strerror(errno)); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
310 |
28180
781ef511a767
Add an option to vo_macosx to set a custom buffer_name.
gpoirier
parents:
28130
diff
changeset
|
311 if (shm_unlink(buffer_name) == -1) |
29210 | 312 mp_msg(MSGT_VO, MSGL_FATAL, "[vo_corevideo] uninit: shm_unlink failed. Error: %s\n", strerror(errno)); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
313 |
16385 | 314 } |
315 | |
21551 | 316 SetSystemUIMode( kUIModeNormal, 0); |
317 CGDisplayShowCursor(kCGDirectMainDisplay); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
318 |
21551 | 319 if(mpGLView) |
320 { | |
25136 | 321 NSAutoreleasePool *finalPool; |
24742
0bef706332b5
Fix deallocate bug which sometimes causes a crash when reinitializing.
nplourde
parents:
24698
diff
changeset
|
322 mpGLView = nil; |
21551 | 323 [autoreleasepool release]; |
25136 | 324 finalPool = [[NSAutoreleasePool alloc] init]; |
25078
3efbdaab822f
Let NSApp handle events when uninit to fix the delay dealloc bug of mpGLView.
ulion
parents:
24965
diff
changeset
|
325 [NSApp nextEventMatchingMask:NSAnyEventMask untilDate:nil inMode:NSDefaultRunLoopMode dequeue:YES]; |
3efbdaab822f
Let NSApp handle events when uninit to fix the delay dealloc bug of mpGLView.
ulion
parents:
24965
diff
changeset
|
326 [finalPool release]; |
21551 | 327 } |
25121 | 328 if (!shared_buffer) |
329 { | |
25180 | 330 free(image_datas[0]); |
331 if (vo_doublebuffering) | |
332 free(image_datas[1]); | |
333 image_datas[0] = NULL; | |
334 image_datas[1] = NULL; | |
25121 | 335 image_data = NULL; |
336 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
337 |
28180
781ef511a767
Add an option to vo_macosx to set a custom buffer_name.
gpoirier
parents:
28130
diff
changeset
|
338 if (buffer_name) free(buffer_name); |
781ef511a767
Add an option to vo_macosx to set a custom buffer_name.
gpoirier
parents:
28130
diff
changeset
|
339 buffer_name = NULL; |
15289 | 340 } |
341 | |
28130
b5898cb411da
Replace vo_macosx's custom options parsing with a subopt_parse()-based one
gpoirier
parents:
28077
diff
changeset
|
342 static opt_t subopts[] = { |
28306 | 343 {"device_id", OPT_ARG_INT, &screen_id, NULL}, |
28130
b5898cb411da
Replace vo_macosx's custom options parsing with a subopt_parse()-based one
gpoirier
parents:
28077
diff
changeset
|
344 {"shared_buffer", OPT_ARG_BOOL, &shared_buffer, NULL}, |
28180
781ef511a767
Add an option to vo_macosx to set a custom buffer_name.
gpoirier
parents:
28130
diff
changeset
|
345 {"buffer_name", OPT_ARG_MSTRZ,&buffer_name, NULL}, |
28130
b5898cb411da
Replace vo_macosx's custom options parsing with a subopt_parse()-based one
gpoirier
parents:
28077
diff
changeset
|
346 {NULL} |
b5898cb411da
Replace vo_macosx's custom options parsing with a subopt_parse()-based one
gpoirier
parents:
28077
diff
changeset
|
347 }; |
b5898cb411da
Replace vo_macosx's custom options parsing with a subopt_parse()-based one
gpoirier
parents:
28077
diff
changeset
|
348 |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
16145
diff
changeset
|
349 static int preinit(const char *arg) |
15289 | 350 { |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
351 |
28130
b5898cb411da
Replace vo_macosx's custom options parsing with a subopt_parse()-based one
gpoirier
parents:
28077
diff
changeset
|
352 // set defaults |
28306 | 353 screen_id = -1; |
28130
b5898cb411da
Replace vo_macosx's custom options parsing with a subopt_parse()-based one
gpoirier
parents:
28077
diff
changeset
|
354 shared_buffer = false; |
28204 | 355 buffer_name = NULL; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
356 |
28130
b5898cb411da
Replace vo_macosx's custom options parsing with a subopt_parse()-based one
gpoirier
parents:
28077
diff
changeset
|
357 if (subopt_parse(arg, subopts) != 0) { |
b5898cb411da
Replace vo_macosx's custom options parsing with a subopt_parse()-based one
gpoirier
parents:
28077
diff
changeset
|
358 mp_msg(MSGT_VO, MSGL_FATAL, |
29210 | 359 "\n-vo corevideo command line help:\n" |
360 "Example: mplayer -vo corevideo:device_id=1:shared_buffer:buffer_name=mybuff\n" | |
28130
b5898cb411da
Replace vo_macosx's custom options parsing with a subopt_parse()-based one
gpoirier
parents:
28077
diff
changeset
|
361 "\nOptions:\n" |
b5898cb411da
Replace vo_macosx's custom options parsing with a subopt_parse()-based one
gpoirier
parents:
28077
diff
changeset
|
362 " device_id=<0-...>\n" |
28837 | 363 " Set screen device ID for fullscreen.\n" |
28130
b5898cb411da
Replace vo_macosx's custom options parsing with a subopt_parse()-based one
gpoirier
parents:
28077
diff
changeset
|
364 " shared_buffer\n" |
b5898cb411da
Replace vo_macosx's custom options parsing with a subopt_parse()-based one
gpoirier
parents:
28077
diff
changeset
|
365 " Write output to a shared memory buffer instead of displaying it.\n" |
28180
781ef511a767
Add an option to vo_macosx to set a custom buffer_name.
gpoirier
parents:
28130
diff
changeset
|
366 " buffer_name=<name>\n" |
781ef511a767
Add an option to vo_macosx to set a custom buffer_name.
gpoirier
parents:
28130
diff
changeset
|
367 " Name of the shared buffer created with shm_open() as well as\n" |
781ef511a767
Add an option to vo_macosx to set a custom buffer_name.
gpoirier
parents:
28130
diff
changeset
|
368 " the name of the NSConnection MPlayer will try to open.\n" |
781ef511a767
Add an option to vo_macosx to set a custom buffer_name.
gpoirier
parents:
28130
diff
changeset
|
369 " Setting buffer_name implicitly enables shared_buffer.\n" |
28130
b5898cb411da
Replace vo_macosx's custom options parsing with a subopt_parse()-based one
gpoirier
parents:
28077
diff
changeset
|
370 "\n" ); |
b5898cb411da
Replace vo_macosx's custom options parsing with a subopt_parse()-based one
gpoirier
parents:
28077
diff
changeset
|
371 return -1; |
b5898cb411da
Replace vo_macosx's custom options parsing with a subopt_parse()-based one
gpoirier
parents:
28077
diff
changeset
|
372 } |
15728 | 373 |
15289 | 374 autoreleasepool = [[NSAutoreleasePool alloc] init]; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
375 |
28204 | 376 if (!buffer_name) |
377 buffer_name = strdup(DEFAULT_BUFFER_NAME); | |
378 else | |
28180
781ef511a767
Add an option to vo_macosx to set a custom buffer_name.
gpoirier
parents:
28130
diff
changeset
|
379 shared_buffer = true; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
380 |
16385 | 381 if(!shared_buffer) |
16144 | 382 { |
29272
c95bad660986
When used with shared_buffer, there's no need for a NSApp object, which causes MPlayer to be marked as unresponsive.
adrian
parents:
29271
diff
changeset
|
383 NSApplicationLoad(); |
c95bad660986
When used with shared_buffer, there's no need for a NSApp object, which causes MPlayer to be marked as unresponsive.
adrian
parents:
29271
diff
changeset
|
384 NSApp = [NSApplication sharedApplication]; |
c95bad660986
When used with shared_buffer, there's no need for a NSApp object, which causes MPlayer to be marked as unresponsive.
adrian
parents:
29271
diff
changeset
|
385 isLeopardOrLater = floor(NSAppKitVersionNumber) > 824; |
c95bad660986
When used with shared_buffer, there's no need for a NSApp object, which causes MPlayer to be marked as unresponsive.
adrian
parents:
29271
diff
changeset
|
386 |
27397
d47744b95b78
Give a CONFIG_ prefix to preprocessor directives that lacked one and
diego
parents:
27394
diff
changeset
|
387 #if !defined (CONFIG_MACOSX_FINDER) || !defined (CONFIG_SDL) |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
388 //this chunk of code is heavily based off SDL_macosx.m from SDL |
17358
22ec2e9cb530
do not give focus to vo_macosx in shared buffer mode. Patch by Hector Chu<hectorchu@gmail.com>
nplourde
parents:
16385
diff
changeset
|
389 ProcessSerialNumber myProc, frProc; |
22ec2e9cb530
do not give focus to vo_macosx in shared buffer mode. Patch by Hector Chu<hectorchu@gmail.com>
nplourde
parents:
16385
diff
changeset
|
390 Boolean sameProc; |
22ec2e9cb530
do not give focus to vo_macosx in shared buffer mode. Patch by Hector Chu<hectorchu@gmail.com>
nplourde
parents:
16385
diff
changeset
|
391 |
22ec2e9cb530
do not give focus to vo_macosx in shared buffer mode. Patch by Hector Chu<hectorchu@gmail.com>
nplourde
parents:
16385
diff
changeset
|
392 if (GetFrontProcess(&frProc) == noErr) |
22ec2e9cb530
do not give focus to vo_macosx in shared buffer mode. Patch by Hector Chu<hectorchu@gmail.com>
nplourde
parents:
16385
diff
changeset
|
393 { |
22ec2e9cb530
do not give focus to vo_macosx in shared buffer mode. Patch by Hector Chu<hectorchu@gmail.com>
nplourde
parents:
16385
diff
changeset
|
394 if (GetCurrentProcess(&myProc) == noErr) |
22ec2e9cb530
do not give focus to vo_macosx in shared buffer mode. Patch by Hector Chu<hectorchu@gmail.com>
nplourde
parents:
16385
diff
changeset
|
395 { |
22ec2e9cb530
do not give focus to vo_macosx in shared buffer mode. Patch by Hector Chu<hectorchu@gmail.com>
nplourde
parents:
16385
diff
changeset
|
396 if (SameProcess(&frProc, &myProc, &sameProc) == noErr && !sameProc) |
22ec2e9cb530
do not give focus to vo_macosx in shared buffer mode. Patch by Hector Chu<hectorchu@gmail.com>
nplourde
parents:
16385
diff
changeset
|
397 { |
27988 | 398 TransformProcessType(&myProc, kProcessTransformToForegroundApplication); |
17358
22ec2e9cb530
do not give focus to vo_macosx in shared buffer mode. Patch by Hector Chu<hectorchu@gmail.com>
nplourde
parents:
16385
diff
changeset
|
399 } |
22ec2e9cb530
do not give focus to vo_macosx in shared buffer mode. Patch by Hector Chu<hectorchu@gmail.com>
nplourde
parents:
16385
diff
changeset
|
400 SetFrontProcess(&myProc); |
22ec2e9cb530
do not give focus to vo_macosx in shared buffer mode. Patch by Hector Chu<hectorchu@gmail.com>
nplourde
parents:
16385
diff
changeset
|
401 } |
22ec2e9cb530
do not give focus to vo_macosx in shared buffer mode. Patch by Hector Chu<hectorchu@gmail.com>
nplourde
parents:
16385
diff
changeset
|
402 } |
22ec2e9cb530
do not give focus to vo_macosx in shared buffer mode. Patch by Hector Chu<hectorchu@gmail.com>
nplourde
parents:
16385
diff
changeset
|
403 #endif |
22ec2e9cb530
do not give focus to vo_macosx in shared buffer mode. Patch by Hector Chu<hectorchu@gmail.com>
nplourde
parents:
16385
diff
changeset
|
404 |
16385 | 405 if(!mpGLView) |
406 { | |
407 mpGLView = [[MPlayerOpenGLView alloc] initWithFrame:NSMakeRect(0, 0, 100, 100) pixelFormat:[MPlayerOpenGLView defaultPixelFormat]]; | |
408 [mpGLView autorelease]; | |
409 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
410 |
16385 | 411 [mpGLView display]; |
412 [mpGLView preinit]; | |
16144 | 413 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
414 |
15289 | 415 return 0; |
416 } | |
417 | |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
16145
diff
changeset
|
418 static int control(uint32_t request, void *data, ...) |
15289 | 419 { |
420 switch (request) | |
421 { | |
26755
46f0b4d34fa1
cosmetics: Remove useless parentheses from from return statements.
diego
parents:
25468
diff
changeset
|
422 case VOCTRL_PAUSE: return int_pause = 1; |
46f0b4d34fa1
cosmetics: Remove useless parentheses from from return statements.
diego
parents:
25468
diff
changeset
|
423 case VOCTRL_RESUME: return int_pause = 0; |
15289 | 424 case VOCTRL_QUERY_FORMAT: return query_format(*((uint32_t*)data)); |
25157
cf3b6015735d
Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents:
25137
diff
changeset
|
425 case VOCTRL_ONTOP: vo_ontop = (!(vo_ontop)); if(!shared_buffer){ [mpGLView ontop]; } else { [mplayerosxProto ontop]; } return VO_TRUE; |
15611 | 426 case VOCTRL_ROOTWIN: vo_rootwin = (!(vo_rootwin)); [mpGLView rootwin]; return VO_TRUE; |
25157
cf3b6015735d
Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents:
25137
diff
changeset
|
427 case VOCTRL_FULLSCREEN: vo_fs = (!(vo_fs)); if(!shared_buffer){ [mpGLView fullscreen: NO]; } else { [mplayerosxProto toggleFullscreen]; } return VO_TRUE; |
15289 | 428 case VOCTRL_GET_PANSCAN: return VO_TRUE; |
15611 | 429 case VOCTRL_SET_PANSCAN: [mpGLView panscan]; return VO_TRUE; |
15289 | 430 } |
431 return VO_NOTIMPL; | |
432 } | |
433 | |
434 ////////////////////////////////////////////////////////////////////////// | |
435 // NSOpenGLView Subclass | |
436 ////////////////////////////////////////////////////////////////////////// | |
15611 | 437 @implementation MPlayerOpenGLView |
24076 | 438 - (void) preinit |
15289 | 439 { |
15726 | 440 //init menu |
441 [self initMenu]; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
442 |
15726 | 443 //create window |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
444 window = [[NSWindow alloc] initWithContentRect:NSMakeRect(0, 0, 100, 100) |
15726 | 445 styleMask:NSTitledWindowMask|NSTexturedBackgroundWindowMask|NSClosableWindowMask|NSMiniaturizableWindowMask|NSResizableWindowMask |
446 backing:NSBackingStoreBuffered defer:NO]; | |
447 | |
16144 | 448 [window autorelease]; |
15726 | 449 [window setDelegate:mpGLView]; |
450 [window setContentView:mpGLView]; | |
451 [window setInitialFirstResponder:mpGLView]; | |
452 [window setAcceptsMouseMovedEvents:YES]; | |
453 [window setTitle:@"MPlayer - The Movie Player"]; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
454 |
15726 | 455 isFullscreen = 0; |
15855 | 456 winSizeMult = 1; |
15726 | 457 } |
458 | |
24076 | 459 - (void) config |
15726 | 460 { |
461 uint32_t d_width; | |
462 uint32_t d_height; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
463 |
25137 | 464 GLint swapInterval = 1; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
465 |
15726 | 466 NSRect frame; |
15289 | 467 CVReturn error = kCVReturnSuccess; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
468 |
15728 | 469 //config window |
15726 | 470 aspect((int *)&d_width, (int *)&d_height,A_NOZOOM); |
471 frame = NSMakeRect(0, 0, d_width, d_height); | |
472 [window setContentSize: frame.size]; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
473 |
15289 | 474 //create OpenGL Context |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
475 glContext = [[NSOpenGLContext alloc] initWithFormat:[NSOpenGLView defaultPixelFormat] shareContext:nil]; |
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
476 |
15289 | 477 [self setOpenGLContext:glContext]; |
15647 | 478 [glContext setValues:&swapInterval forParameter:NSOpenGLCPSwapInterval]; |
15289 | 479 [glContext setView:self]; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
480 [glContext makeCurrentContext]; |
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
481 |
25180 | 482 error = CVPixelBufferCreateWithBytes(NULL, image_width, image_height, pixelFormat, image_datas[0], image_width*image_bytes, NULL, NULL, NULL, &frameBuffers[0]); |
15289 | 483 if(error != kCVReturnSuccess) |
29210 | 484 mp_msg(MSGT_VO, MSGL_ERR,"[vo_corevideo] Failed to create Pixel Buffer(%d)\n", error); |
25180 | 485 if (vo_doublebuffering) { |
486 error = CVPixelBufferCreateWithBytes(NULL, image_width, image_height, pixelFormat, image_datas[1], image_width*image_bytes, NULL, NULL, NULL, &frameBuffers[1]); | |
487 if(error != kCVReturnSuccess) | |
29210 | 488 mp_msg(MSGT_VO, MSGL_ERR,"[vo_corevideo] Failed to create Pixel Double Buffer(%d)\n", error); |
25180 | 489 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
490 |
15289 | 491 error = CVOpenGLTextureCacheCreate(NULL, 0, [glContext CGLContextObj], [[self pixelFormat] CGLPixelFormatObj], 0, &textureCache); |
492 if(error != kCVReturnSuccess) | |
29210 | 493 mp_msg(MSGT_VO, MSGL_ERR,"[vo_corevideo] Failed to create OpenGL texture Cache(%d)\n", error); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
494 |
25180 | 495 error = CVOpenGLTextureCacheCreateTextureFromImage(NULL, textureCache, frameBuffers[image_page], 0, &texture); |
15289 | 496 if(error != kCVReturnSuccess) |
29210 | 497 mp_msg(MSGT_VO, MSGL_ERR,"[vo_corevideo] Failed to create OpenGL texture(%d)\n", error); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
498 |
15728 | 499 //show window |
500 [window center]; | |
501 [window makeKeyAndOrderFront:mpGLView]; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
502 |
15726 | 503 if(vo_rootwin) |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
504 [mpGLView rootwin]; |
15726 | 505 |
506 if(vo_fs) | |
507 [mpGLView fullscreen: NO]; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
508 |
15726 | 509 if(vo_ontop) |
510 [mpGLView ontop]; | |
15289 | 511 } |
512 | |
513 /* | |
15570 | 514 Init Menu |
515 */ | |
516 - (void)initMenu | |
517 { | |
21395 | 518 NSMenu *menu, *aspectMenu; |
15570 | 519 NSMenuItem *menuItem; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
520 |
15570 | 521 [NSApp setMainMenu:[[NSMenu alloc] init]]; |
522 | |
523 //Create Movie Menu | |
524 menu = [[NSMenu alloc] initWithTitle:@"Movie"]; | |
525 menuItem = [[NSMenuItem alloc] initWithTitle:@"Half Size" action:@selector(menuAction:) keyEquivalent:@"0"]; [menu addItem:menuItem]; | |
526 kHalfScreenCmd = menuItem; | |
527 menuItem = [[NSMenuItem alloc] initWithTitle:@"Normal Size" action:@selector(menuAction:) keyEquivalent:@"1"]; [menu addItem:menuItem]; | |
528 kNormalScreenCmd = menuItem; | |
529 menuItem = [[NSMenuItem alloc] initWithTitle:@"Double Size" action:@selector(menuAction:) keyEquivalent:@"2"]; [menu addItem:menuItem]; | |
530 kDoubleScreenCmd = menuItem; | |
531 menuItem = [[NSMenuItem alloc] initWithTitle:@"Full Size" action:@selector(menuAction:) keyEquivalent:@"f"]; [menu addItem:menuItem]; | |
532 kFullScreenCmd = menuItem; | |
15909 | 533 menuItem = (NSMenuItem *)[NSMenuItem separatorItem]; [menu addItem:menuItem]; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
534 |
15570 | 535 aspectMenu = [[NSMenu alloc] initWithTitle:@"Aspect Ratio"]; |
536 menuItem = [[NSMenuItem alloc] initWithTitle:@"Keep" action:@selector(menuAction:) keyEquivalent:@""]; [aspectMenu addItem:menuItem]; | |
537 if(vo_keepaspect) [menuItem setState:NSOnState]; | |
538 kKeepAspectCmd = menuItem; | |
539 menuItem = [[NSMenuItem alloc] initWithTitle:@"Pan-Scan" action:@selector(menuAction:) keyEquivalent:@""]; [aspectMenu addItem:menuItem]; | |
540 if(vo_panscan) [menuItem setState:NSOnState]; | |
541 kPanScanCmd = menuItem; | |
15909 | 542 menuItem = (NSMenuItem *)[NSMenuItem separatorItem]; [aspectMenu addItem:menuItem]; |
15570 | 543 menuItem = [[NSMenuItem alloc] initWithTitle:@"Original" action:@selector(menuAction:) keyEquivalent:@""]; [aspectMenu addItem:menuItem]; |
544 kAspectOrgCmd = menuItem; | |
545 menuItem = [[NSMenuItem alloc] initWithTitle:@"4:3" action:@selector(menuAction:) keyEquivalent:@""]; [aspectMenu addItem:menuItem]; | |
546 kAspectFullCmd = menuItem; | |
547 menuItem = [[NSMenuItem alloc] initWithTitle:@"16:9" action:@selector(menuAction:) keyEquivalent:@""]; [aspectMenu addItem:menuItem]; | |
548 kAspectWideCmd = menuItem; | |
549 menuItem = [[NSMenuItem alloc] initWithTitle:@"Aspect Ratio" action:nil keyEquivalent:@""]; | |
550 [menuItem setSubmenu:aspectMenu]; | |
551 [menu addItem:menuItem]; | |
552 [aspectMenu release]; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
553 |
15570 | 554 //Add to menubar |
555 menuItem = [[NSMenuItem alloc] initWithTitle:@"Movie" action:nil keyEquivalent:@""]; | |
556 [menuItem setSubmenu:menu]; | |
557 [[NSApp mainMenu] addItem:menuItem]; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
558 |
15570 | 559 //Create Window Menu |
560 menu = [[NSMenu alloc] initWithTitle:@"Window"]; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
561 |
15570 | 562 menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"]; [menu addItem:menuItem]; |
563 menuItem = [[NSMenuItem alloc] initWithTitle:@"Zoom" action:@selector(performZoom:) keyEquivalent:@""]; [menu addItem:menuItem]; | |
564 | |
565 //Add to menubar | |
566 menuItem = [[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""]; | |
567 [menuItem setSubmenu:menu]; | |
568 [[NSApp mainMenu] addItem:menuItem]; | |
569 [NSApp setWindowsMenu:menu]; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
570 |
15570 | 571 [menu release]; |
572 [menuItem release]; | |
573 } | |
574 | |
575 /* | |
576 Menu Action | |
577 */ | |
578 - (void)menuAction:(id)sender | |
579 { | |
580 uint32_t d_width; | |
581 uint32_t d_height; | |
582 NSRect frame; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
583 |
15570 | 584 aspect((int *)&d_width, (int *)&d_height,A_NOZOOM); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
585 |
15731 | 586 if(sender == kQuitCmd) |
587 { | |
588 mplayer_put_key(KEY_ESC); | |
589 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
590 |
15570 | 591 if(sender == kHalfScreenCmd) |
592 { | |
593 if(isFullscreen) { | |
21546
253a1e98bfe3
vo_macosx.m disable window animation when going to fullscreen
nplourde
parents:
21395
diff
changeset
|
594 vo_fs = (!(vo_fs)); [self fullscreen:NO]; |
15570 | 595 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
596 |
15855 | 597 winSizeMult = 0.5; |
598 frame.size.width = (d_width*winSizeMult); | |
599 frame.size.height = ((d_width/movie_aspect)*winSizeMult); | |
15570 | 600 [window setContentSize: frame.size]; |
601 [self reshape]; | |
602 } | |
603 if(sender == kNormalScreenCmd) | |
604 { | |
605 if(isFullscreen) { | |
21546
253a1e98bfe3
vo_macosx.m disable window animation when going to fullscreen
nplourde
parents:
21395
diff
changeset
|
606 vo_fs = (!(vo_fs)); [self fullscreen:NO]; |
15570 | 607 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
608 |
15855 | 609 winSizeMult = 1; |
15570 | 610 frame.size.width = d_width; |
611 frame.size.height = d_width/movie_aspect; | |
612 [window setContentSize: frame.size]; | |
613 [self reshape]; | |
614 } | |
615 if(sender == kDoubleScreenCmd) | |
616 { | |
617 if(isFullscreen) { | |
21546
253a1e98bfe3
vo_macosx.m disable window animation when going to fullscreen
nplourde
parents:
21395
diff
changeset
|
618 vo_fs = (!(vo_fs)); [self fullscreen:NO]; |
15570 | 619 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
620 |
15855 | 621 winSizeMult = 2; |
622 frame.size.width = d_width*winSizeMult; | |
623 frame.size.height = (d_width/movie_aspect)*winSizeMult; | |
15570 | 624 [window setContentSize: frame.size]; |
625 [self reshape]; | |
626 } | |
627 if(sender == kFullScreenCmd) | |
628 { | |
629 vo_fs = (!(vo_fs)); | |
21546
253a1e98bfe3
vo_macosx.m disable window animation when going to fullscreen
nplourde
parents:
21395
diff
changeset
|
630 [self fullscreen:NO]; |
15570 | 631 } |
632 | |
633 if(sender == kKeepAspectCmd) | |
634 { | |
635 vo_keepaspect = (!(vo_keepaspect)); | |
636 if(vo_keepaspect) | |
637 [kKeepAspectCmd setState:NSOnState]; | |
638 else | |
639 [kKeepAspectCmd setState:NSOffState]; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
640 |
15909 | 641 [self reshape]; |
15570 | 642 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
643 |
15570 | 644 if(sender == kPanScanCmd) |
645 { | |
646 vo_panscan = (!(vo_panscan)); | |
647 if(vo_panscan) | |
648 [kPanScanCmd setState:NSOnState]; | |
649 else | |
650 [kPanScanCmd setState:NSOffState]; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
651 |
15902
16534910f0fb
fix various window resizing bug with menu option
nplourde
parents:
15882
diff
changeset
|
652 [self panscan]; |
15570 | 653 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
654 |
15570 | 655 if(sender == kAspectOrgCmd) |
656 { | |
657 movie_aspect = old_movie_aspect; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
658 |
15902
16534910f0fb
fix various window resizing bug with menu option
nplourde
parents:
15882
diff
changeset
|
659 if(isFullscreen) |
16534910f0fb
fix various window resizing bug with menu option
nplourde
parents:
15882
diff
changeset
|
660 { |
16534910f0fb
fix various window resizing bug with menu option
nplourde
parents:
15882
diff
changeset
|
661 [self reshape]; |
16534910f0fb
fix various window resizing bug with menu option
nplourde
parents:
15882
diff
changeset
|
662 } |
16534910f0fb
fix various window resizing bug with menu option
nplourde
parents:
15882
diff
changeset
|
663 else |
16534910f0fb
fix various window resizing bug with menu option
nplourde
parents:
15882
diff
changeset
|
664 { |
16534910f0fb
fix various window resizing bug with menu option
nplourde
parents:
15882
diff
changeset
|
665 frame.size.width = d_width*winSizeMult; |
16534910f0fb
fix various window resizing bug with menu option
nplourde
parents:
15882
diff
changeset
|
666 frame.size.height = (d_width/movie_aspect)*winSizeMult; |
16534910f0fb
fix various window resizing bug with menu option
nplourde
parents:
15882
diff
changeset
|
667 [window setContentSize: frame.size]; |
16534910f0fb
fix various window resizing bug with menu option
nplourde
parents:
15882
diff
changeset
|
668 [self reshape]; |
16534910f0fb
fix various window resizing bug with menu option
nplourde
parents:
15882
diff
changeset
|
669 } |
15570 | 670 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
671 |
15570 | 672 if(sender == kAspectFullCmd) |
673 { | |
674 movie_aspect = 4.0f/3.0f; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
675 |
15882 | 676 if(isFullscreen) |
677 { | |
678 [self reshape]; | |
679 } | |
680 else | |
681 { | |
682 frame.size.width = d_width*winSizeMult; | |
683 frame.size.height = (d_width/movie_aspect)*winSizeMult; | |
684 [window setContentSize: frame.size]; | |
685 [self reshape]; | |
686 } | |
15570 | 687 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
688 |
15570 | 689 if(sender == kAspectWideCmd) |
690 { | |
691 movie_aspect = 16.0f/9.0f; | |
15882 | 692 |
693 if(isFullscreen) | |
694 { | |
695 [self reshape]; | |
696 } | |
697 else | |
698 { | |
699 frame.size.width = d_width*winSizeMult; | |
700 frame.size.height = (d_width/movie_aspect)*winSizeMult; | |
701 [window setContentSize: frame.size]; | |
702 [self reshape]; | |
703 } | |
15570 | 704 } |
705 } | |
706 | |
707 /* | |
15289 | 708 Setup OpenGL |
709 */ | |
710 - (void)prepareOpenGL | |
711 { | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
712 glEnable(GL_BLEND); |
15289 | 713 glDisable(GL_DEPTH_TEST); |
714 glDepthMask(GL_FALSE); | |
715 glDisable(GL_CULL_FACE); | |
716 [self reshape]; | |
717 } | |
718 | |
719 /* | |
720 reshape OpenGL viewport | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
721 */ |
15289 | 722 - (void)reshape |
723 { | |
724 uint32_t d_width; | |
725 uint32_t d_height; | |
726 float aspectX; | |
727 float aspectY; | |
728 int padding = 0; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
729 |
15289 | 730 NSRect frame = [self frame]; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
731 |
15289 | 732 glViewport(0, 0, frame.size.width, frame.size.height); |
733 glMatrixMode(GL_PROJECTION); | |
734 glLoadIdentity(); | |
735 glOrtho(0, frame.size.width, frame.size.height, 0, -1.0, 1.0); | |
736 glMatrixMode(GL_MODELVIEW); | |
737 glLoadIdentity(); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
738 |
15729 | 739 //set texture frame |
15289 | 740 if(vo_keepaspect) |
741 { | |
15571 | 742 aspect( (int *)&d_width, (int *)&d_height, A_NOZOOM); |
15289 | 743 d_height = ((float)d_width/movie_aspect); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
744 |
15289 | 745 aspectX = (float)((float)frame.size.width/(float)d_width); |
746 aspectY = (float)((float)(frame.size.height)/(float)d_height); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
747 |
15289 | 748 if((d_height*aspectX)>(frame.size.height)) |
749 { | |
750 padding = (frame.size.width - d_width*aspectY)/2; | |
25424 | 751 textureFrame = NSMakeRect(padding, 0, d_width*aspectY, d_height*aspectY); |
15289 | 752 } |
753 else | |
754 { | |
755 padding = ((frame.size.height) - d_height*aspectX)/2; | |
25424 | 756 textureFrame = NSMakeRect(0, padding, d_width*aspectX, d_height*aspectX); |
15289 | 757 } |
758 } | |
759 else | |
760 { | |
15729 | 761 textureFrame = frame; |
15289 | 762 } |
25446 | 763 vo_dwidth = textureFrame.size.width; |
764 vo_dheight = textureFrame.size.height; | |
15289 | 765 } |
766 | |
767 /* | |
768 Render frame | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
769 */ |
15289 | 770 - (void) render |
771 { | |
21395 | 772 int curTime; |
773 | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
774 glClear(GL_COLOR_BUFFER_BIT); |
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
775 |
15289 | 776 glEnable(CVOpenGLTextureGetTarget(texture)); |
777 glBindTexture(CVOpenGLTextureGetTarget(texture), CVOpenGLTextureGetName(texture)); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
778 |
15289 | 779 glColor3f(1,1,1); |
780 glBegin(GL_QUADS); | |
15729 | 781 glTexCoord2f(upperLeft[0], upperLeft[1]); glVertex2i( textureFrame.origin.x-(vo_panscan_x >> 1), textureFrame.origin.y-(vo_panscan_y >> 1)); |
25424 | 782 glTexCoord2f(lowerLeft[0], lowerLeft[1]); glVertex2i(textureFrame.origin.x-(vo_panscan_x >> 1), NSMaxY(textureFrame)+(vo_panscan_y >> 1)); |
783 glTexCoord2f(lowerRight[0], lowerRight[1]); glVertex2i(NSMaxX(textureFrame)+(vo_panscan_x >> 1), NSMaxY(textureFrame)+(vo_panscan_y >> 1)); | |
784 glTexCoord2f(upperRight[0], upperRight[1]); glVertex2i(NSMaxX(textureFrame)+(vo_panscan_x >> 1), textureFrame.origin.y-(vo_panscan_y >> 1)); | |
15289 | 785 glEnd(); |
15339 | 786 glDisable(CVOpenGLTextureGetTarget(texture)); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
787 |
15339 | 788 //render resize box |
789 if(!isFullscreen) | |
790 { | |
791 NSRect frame = [self frame]; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
792 |
15339 | 793 glBegin(GL_LINES); |
794 glColor4f(0.2, 0.2, 0.2, 0.5); | |
795 glVertex2i(frame.size.width-1, frame.size.height-1); glVertex2i(frame.size.width-1, frame.size.height-1); | |
796 glVertex2i(frame.size.width-1, frame.size.height-5); glVertex2i(frame.size.width-5, frame.size.height-1); | |
797 glVertex2i(frame.size.width-1, frame.size.height-9); glVertex2i(frame.size.width-9, frame.size.height-1); | |
798 | |
799 glColor4f(0.4, 0.4, 0.4, 0.5); | |
800 glVertex2i(frame.size.width-1, frame.size.height-2); glVertex2i(frame.size.width-2, frame.size.height-1); | |
801 glVertex2i(frame.size.width-1, frame.size.height-6); glVertex2i(frame.size.width-6, frame.size.height-1); | |
802 glVertex2i(frame.size.width-1, frame.size.height-10); glVertex2i(frame.size.width-10, frame.size.height-1); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
803 |
15339 | 804 glColor4f(0.6, 0.6, 0.6, 0.5); |
805 glVertex2i(frame.size.width-1, frame.size.height-3); glVertex2i(frame.size.width-3, frame.size.height-1); | |
806 glVertex2i(frame.size.width-1, frame.size.height-7); glVertex2i(frame.size.width-7, frame.size.height-1); | |
807 glVertex2i(frame.size.width-1, frame.size.height-11); glVertex2i(frame.size.width-11, frame.size.height-1); | |
808 glEnd(); | |
809 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
810 |
15289 | 811 glFlush(); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
812 |
28010
0a0f63090e60
factorize mouse hiding and screensaver disabling code
gpoirier
parents:
28001
diff
changeset
|
813 curTime = TickCount()/60; |
0a0f63090e60
factorize mouse hiding and screensaver disabling code
gpoirier
parents:
28001
diff
changeset
|
814 |
28837 | 815 //automatically hide mouse cursor (and future on-screen control?) |
15327 | 816 if(isFullscreen && !mouseHide && !isRootwin) |
15289 | 817 { |
28010
0a0f63090e60
factorize mouse hiding and screensaver disabling code
gpoirier
parents:
28001
diff
changeset
|
818 if( ((curTime - lastMouseHide) >= 5) || (lastMouseHide == 0) ) |
15289 | 819 { |
18057 | 820 CGDisplayHideCursor(kCGDirectMainDisplay); |
28010
0a0f63090e60
factorize mouse hiding and screensaver disabling code
gpoirier
parents:
28001
diff
changeset
|
821 mouseHide = TRUE; |
0a0f63090e60
factorize mouse hiding and screensaver disabling code
gpoirier
parents:
28001
diff
changeset
|
822 lastMouseHide = curTime; |
15289 | 823 } |
824 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
825 |
17725 | 826 //update activity every 30 seconds to prevent |
17546 | 827 //screensaver from starting up. |
28010
0a0f63090e60
factorize mouse hiding and screensaver disabling code
gpoirier
parents:
28001
diff
changeset
|
828 if( ((curTime - lastScreensaverUpdate) >= 30) || (lastScreensaverUpdate == 0) ) |
17546 | 829 { |
830 UpdateSystemActivity(UsrActivity); | |
28010
0a0f63090e60
factorize mouse hiding and screensaver disabling code
gpoirier
parents:
28001
diff
changeset
|
831 lastScreensaverUpdate = curTime; |
17546 | 832 } |
15289 | 833 } |
834 | |
835 /* | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
836 Create OpenGL texture from current frame & set texco |
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
837 */ |
15289 | 838 - (void) setCurrentTexture |
839 { | |
840 CVReturn error = kCVReturnSuccess; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
841 |
29137
0f6fc0df2c23
fix a memory leak leading to ~80 bytes being leaked at each call to flip_page.
gpoirier
parents:
28837
diff
changeset
|
842 CVOpenGLTextureRelease(texture); |
25180 | 843 error = CVOpenGLTextureCacheCreateTextureFromImage(NULL, textureCache, frameBuffers[image_page], 0, &texture); |
15289 | 844 if(error != kCVReturnSuccess) |
29210 | 845 mp_msg(MSGT_VO, MSGL_ERR,"[vo_corevideo] Failed to create OpenGL texture(%d)\n", error); |
15289 | 846 |
847 CVOpenGLTextureGetCleanTexCoords(texture, lowerLeft, lowerRight, upperRight, upperLeft); | |
848 } | |
849 | |
850 /* | |
851 redraw win rect | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
852 */ |
15289 | 853 - (void) drawRect: (NSRect *) bounds |
854 { | |
855 [self render]; | |
856 } | |
857 | |
858 /* | |
859 Toggle Fullscreen | |
860 */ | |
861 - (void) fullscreen: (BOOL) animate | |
862 { | |
863 static NSRect old_frame; | |
864 static NSRect old_view_frame; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
865 |
15573 | 866 panscan_calc(); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
867 |
15289 | 868 //go fullscreen |
869 if(vo_fs) | |
870 { | |
15327 | 871 if(!isRootwin) |
872 { | |
15882 | 873 SetSystemUIMode( kUIModeAllHidden, kUIOptionAutoShowMenuBar); |
18057 | 874 CGDisplayHideCursor(kCGDirectMainDisplay); |
15327 | 875 mouseHide = YES; |
876 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
877 |
15289 | 878 old_frame = [window frame]; //save main window size & position |
28306 | 879 if(screen_id >= 0) |
25413 | 880 screen_frame = [screen_handle frame]; |
25414
5c03a9bdf220
Record screen size and display size in vo_ variables.
ulion
parents:
25413
diff
changeset
|
881 else { |
25413 | 882 screen_frame = [[window screen] frame]; |
25414
5c03a9bdf220
Record screen size and display size in vo_ variables.
ulion
parents:
25413
diff
changeset
|
883 vo_screenwidth = screen_frame.size.width; |
5c03a9bdf220
Record screen size and display size in vo_ variables.
ulion
parents:
25413
diff
changeset
|
884 vo_screenheight = screen_frame.size.height; |
5c03a9bdf220
Record screen size and display size in vo_ variables.
ulion
parents:
25413
diff
changeset
|
885 } |
25413 | 886 |
15728 | 887 [window setFrame:screen_frame display:YES animate:animate]; //zoom-in window with nice useless sfx |
15289 | 888 old_view_frame = [self bounds]; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
889 |
15289 | 890 //fix origin for multi screen setup |
15728 | 891 screen_frame.origin.x = 0; |
892 screen_frame.origin.y = 0; | |
893 [self setFrame:screen_frame]; | |
15289 | 894 [self setNeedsDisplay:YES]; |
895 [window setHasShadow:NO]; | |
896 isFullscreen = 1; | |
897 } | |
898 else | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
899 { |
15902
16534910f0fb
fix various window resizing bug with menu option
nplourde
parents:
15882
diff
changeset
|
900 SetSystemUIMode( kUIModeNormal, 0); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
901 |
15289 | 902 isFullscreen = 0; |
18057 | 903 CGDisplayShowCursor(kCGDirectMainDisplay); |
15289 | 904 mouseHide = NO; |
905 | |
906 //revert window to previous setting | |
907 [self setFrame:old_view_frame]; | |
908 [self setNeedsDisplay:YES]; | |
16081
72c352edce8f
restore window shadow when quitting fullscreen mode
nplourde
parents:
15909
diff
changeset
|
909 [window setHasShadow:YES]; |
15289 | 910 [window setFrame:old_frame display:YES animate:animate];//zoom-out window with nice useless sfx |
911 } | |
912 } | |
913 | |
914 /* | |
915 Toggle ontop | |
916 */ | |
917 - (void) ontop | |
918 { | |
15320 | 919 if(vo_ontop) |
920 { | |
921 [window setLevel:NSScreenSaverWindowLevel]; | |
922 isOntop = YES; | |
923 } | |
924 else | |
925 { | |
926 [window setLevel:NSNormalWindowLevel]; | |
927 isOntop = NO; | |
928 } | |
15289 | 929 } |
930 | |
931 /* | |
932 Toggle panscan | |
933 */ | |
934 - (void) panscan | |
935 { | |
15331 | 936 panscan_calc(); |
15289 | 937 } |
938 | |
939 /* | |
15327 | 940 Toggle rootwin |
941 */ | |
942 - (void) rootwin | |
943 { | |
944 if(vo_rootwin) | |
945 { | |
946 [window setLevel:CGWindowLevelForKey(kCGDesktopWindowLevelKey)]; | |
947 [window orderBack:self]; | |
948 isRootwin = YES; | |
949 } | |
950 else | |
951 { | |
952 [window setLevel:NSNormalWindowLevel]; | |
953 isRootwin = NO; | |
954 } | |
955 } | |
956 | |
957 /* | |
15289 | 958 Check event for new event |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
959 */ |
15289 | 960 - (void) check_events |
961 { | |
962 event = [NSApp nextEventMatchingMask:NSAnyEventMask untilDate:[NSDate dateWithTimeIntervalSinceNow:0.0001] inMode:NSEventTrackingRunLoopMode dequeue:YES]; | |
25178 | 963 if (event == nil) |
964 return; | |
15289 | 965 [NSApp sendEvent:event]; |
25179
6e8b40d412f0
Fix play window not get actived problem on Leopard.
ulion
parents:
25178
diff
changeset
|
966 // Without SDL's bootstrap code (include SDL.h in mplayer.c), |
28837 | 967 // on Leopard, we have trouble to get the play window automatically focused |
968 // when the app is actived. The Following code fix this problem. | |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
26755
diff
changeset
|
969 #ifndef CONFIG_SDL |
25179
6e8b40d412f0
Fix play window not get actived problem on Leopard.
ulion
parents:
25178
diff
changeset
|
970 if (isLeopardOrLater && [event type] == NSAppKitDefined |
6e8b40d412f0
Fix play window not get actived problem on Leopard.
ulion
parents:
25178
diff
changeset
|
971 && [event subtype] == NSApplicationActivatedEventType) { |
6e8b40d412f0
Fix play window not get actived problem on Leopard.
ulion
parents:
25178
diff
changeset
|
972 [window makeMainWindow]; |
6e8b40d412f0
Fix play window not get actived problem on Leopard.
ulion
parents:
25178
diff
changeset
|
973 [window makeKeyAndOrderFront:mpGLView]; |
6e8b40d412f0
Fix play window not get actived problem on Leopard.
ulion
parents:
25178
diff
changeset
|
974 } |
6e8b40d412f0
Fix play window not get actived problem on Leopard.
ulion
parents:
25178
diff
changeset
|
975 #endif |
15289 | 976 } |
977 | |
978 /* | |
15731 | 979 From NSView, respond to key equivalents. |
980 */ | |
981 - (BOOL)performKeyEquivalent:(NSEvent *)theEvent | |
982 { | |
983 switch([theEvent keyCode]) | |
984 { | |
985 case 0x21: [window setAlphaValue: winAlpha-=0.05]; return YES; | |
986 case 0x1e: [window setAlphaValue: winAlpha+=0.05]; return YES; | |
987 } | |
988 return NO; | |
989 } | |
990 | |
991 /* | |
15289 | 992 Process key event |
993 */ | |
994 - (void) keyDown: (NSEvent *) theEvent | |
995 { | |
996 unsigned int key; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
997 |
15289 | 998 switch([theEvent keyCode]) |
999 { | |
1000 case 0x34: | |
1001 case 0x24: key = KEY_ENTER; break; | |
1002 case 0x35: key = KEY_ESC; break; | |
1003 case 0x33: key = KEY_BACKSPACE; break; | |
1004 case 0x3A: key = KEY_BACKSPACE; break; | |
1005 case 0x3B: key = KEY_BACKSPACE; break; | |
1006 case 0x38: key = KEY_BACKSPACE; break; | |
1007 case 0x7A: key = KEY_F+1; break; | |
1008 case 0x78: key = KEY_F+2; break; | |
1009 case 0x63: key = KEY_F+3; break; | |
1010 case 0x76: key = KEY_F+4; break; | |
1011 case 0x60: key = KEY_F+5; break; | |
1012 case 0x61: key = KEY_F+6; break; | |
1013 case 0x62: key = KEY_F+7; break; | |
1014 case 0x64: key = KEY_F+8; break; | |
1015 case 0x65: key = KEY_F+9; break; | |
1016 case 0x6D: key = KEY_F+10; break; | |
1017 case 0x67: key = KEY_F+11; break; | |
1018 case 0x6F: key = KEY_F+12; break; | |
1019 case 0x72: key = KEY_INSERT; break; | |
1020 case 0x75: key = KEY_DELETE; break; | |
1021 case 0x73: key = KEY_HOME; break; | |
1022 case 0x77: key = KEY_END; break; | |
1023 case 0x45: key = '+'; break; | |
1024 case 0x4E: key = '-'; break; | |
1025 case 0x30: key = KEY_TAB; break; | |
1026 case 0x74: key = KEY_PAGE_UP; break; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
1027 case 0x79: key = KEY_PAGE_DOWN; break; |
15289 | 1028 case 0x7B: key = KEY_LEFT; break; |
1029 case 0x7C: key = KEY_RIGHT; break; | |
1030 case 0x7D: key = KEY_DOWN; break; | |
1031 case 0x7E: key = KEY_UP; break; | |
1032 case 0x43: key = '*'; break; | |
1033 case 0x4B: key = '/'; break; | |
24107 | 1034 case 0x4C: key = KEY_KPENTER; break; |
15289 | 1035 case 0x41: key = KEY_KPDEC; break; |
1036 case 0x52: key = KEY_KP0; break; | |
1037 case 0x53: key = KEY_KP1; break; | |
1038 case 0x54: key = KEY_KP2; break; | |
1039 case 0x55: key = KEY_KP3; break; | |
1040 case 0x56: key = KEY_KP4; break; | |
1041 case 0x57: key = KEY_KP5; break; | |
1042 case 0x58: key = KEY_KP6; break; | |
1043 case 0x59: key = KEY_KP7; break; | |
1044 case 0x5B: key = KEY_KP8; break; | |
1045 case 0x5C: key = KEY_KP9; break; | |
1046 default: key = *[[theEvent characters] UTF8String]; break; | |
1047 } | |
1048 mplayer_put_key(key); | |
1049 } | |
1050 | |
1051 /* | |
1052 Process mouse button event | |
1053 */ | |
1054 - (void) mouseMoved: (NSEvent *) theEvent | |
1055 { | |
15327 | 1056 if(isFullscreen && !isRootwin) |
15289 | 1057 { |
18057 | 1058 CGDisplayShowCursor(kCGDirectMainDisplay); |
15289 | 1059 mouseHide = NO; |
1060 } | |
25468
a77c438fedf7
Do not send mouse movements events in root win mode.
ulion
parents:
25446
diff
changeset
|
1061 if (enable_mouse_movements && !isRootwin) { |
25446 | 1062 NSPoint p =[self convertPoint:[theEvent locationInWindow] fromView:nil]; |
1063 if ([self mouse:p inRect:textureFrame]) { | |
1064 char cmdstr[40]; | |
1065 snprintf(cmdstr, sizeof(cmdstr), "set_mouse_pos %i %i", | |
1066 (int)(vo_fs ? p.x : (p.x - textureFrame.origin.x)), | |
1067 (int)(vo_fs ? [self frame].size.height - p.y: (NSMaxY(textureFrame) - p.y))); | |
1068 mp_input_queue_cmd(mp_input_parse_cmd(cmdstr)); | |
1069 } | |
1070 } | |
15289 | 1071 } |
1072 | |
1073 - (void) mouseDown: (NSEvent *) theEvent | |
1074 { | |
1075 [self mouseEvent: theEvent]; | |
1076 } | |
1077 | |
24077
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1078 - (void) mouseUp: (NSEvent *) theEvent |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1079 { |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1080 [self mouseEvent: theEvent]; |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1081 } |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1082 |
15289 | 1083 - (void) rightMouseDown: (NSEvent *) theEvent |
1084 { | |
1085 [self mouseEvent: theEvent]; | |
1086 } | |
1087 | |
24077
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1088 - (void) rightMouseUp: (NSEvent *) theEvent |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1089 { |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1090 [self mouseEvent: theEvent]; |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1091 } |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1092 |
15289 | 1093 - (void) otherMouseDown: (NSEvent *) theEvent |
1094 { | |
1095 [self mouseEvent: theEvent]; | |
1096 } | |
1097 | |
24077
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1098 - (void) otherMouseUp: (NSEvent *) theEvent |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1099 { |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1100 [self mouseEvent: theEvent]; |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1101 } |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1102 |
15289 | 1103 - (void) scrollWheel: (NSEvent *) theEvent |
1104 { | |
1105 if([theEvent deltaY] > 0) | |
1106 mplayer_put_key(MOUSE_BTN3); | |
1107 else | |
1108 mplayer_put_key(MOUSE_BTN4); | |
1109 } | |
1110 | |
1111 - (void) mouseEvent: (NSEvent *) theEvent | |
1112 { | |
24077
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1113 if ( [theEvent buttonNumber] >= 0 && [theEvent buttonNumber] <= 9 ) |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1114 { |
25422 | 1115 int buttonNumber = [theEvent buttonNumber]; |
1116 // Fix to mplayer defined button order: left, middle, right | |
1117 if (buttonNumber == 1) | |
1118 buttonNumber = 2; | |
25423 | 1119 else if (buttonNumber == 2) |
1120 buttonNumber = 1; | |
24077
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1121 switch([theEvent type]) |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1122 { |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1123 case NSLeftMouseDown: |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1124 case NSRightMouseDown: |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1125 case NSOtherMouseDown: |
25422 | 1126 mplayer_put_key((MOUSE_BTN0 + buttonNumber) | MP_KEY_DOWN); |
24077
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1127 break; |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1128 case NSLeftMouseUp: |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1129 case NSRightMouseUp: |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1130 case NSOtherMouseUp: |
25422 | 1131 mplayer_put_key(MOUSE_BTN0 + buttonNumber); |
24077
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1132 break; |
9ce03980ed0c
added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents:
24076
diff
changeset
|
1133 } |
15289 | 1134 } |
1135 } | |
1136 | |
1137 /* | |
1138 NSResponder | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29210
diff
changeset
|
1139 */ |
15289 | 1140 - (BOOL) acceptsFirstResponder |
1141 { | |
1142 return YES; | |
1143 } | |
1144 | |
1145 - (BOOL) becomeFirstResponder | |
1146 { | |
1147 return YES; | |
1148 } | |
1149 | |
1150 - (BOOL) resignFirstResponder | |
1151 { | |
1152 return YES; | |
1153 } | |
15325 | 1154 |
1155 - (void)windowWillClose:(NSNotification *)aNotification | |
1156 { | |
21551 | 1157 mpGLView = NULL; |
15325 | 1158 mplayer_put_key(KEY_ESC); |
1159 } | |
1160 @end |