1 /*****************************************************************************
2 * VLCOpenGLVoutView.m: MacOS X OpenGL provider
3 *****************************************************************************
4 * Copyright (C) 2001-2007 the VideoLAN team
7 * Authors: Colin Delacroix <colin@zoy.org>
8 * Florian G. Pflug <fgp@phlo.org>
9 * Jon Lech Johansen <jon-vl@nanocrew.net>
10 * Derk-Jan Hartman <hartman at videolan dot org>
11 * Eric Petit <titer@m0k.org>
12 * Benjamin Pracht <bigben at videolan dot org>
13 * Damien Fouilleul <damienf at videolan dot org>
14 * Pierre d'Herbemont <pdherbemont at videolan dot org>
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
29 *****************************************************************************/
31 /*****************************************************************************
33 *****************************************************************************/
36 #include "VLCOpenGLVoutView.h"
37 #include "VLCMinimalVoutWindow.h"
39 #include <OpenGL/OpenGL.h>
40 #include <OpenGL/gl.h>
42 /*****************************************************************************
44 *****************************************************************************/
45 int cocoaglvoutviewInit( vout_thread_t * p_vout )
47 vlc_value_t value_drawable;
48 id <VLCOpenGLVoutEmbedding> o_cocoaglview_container;
50 msg_Dbg( p_vout, "Mac OS X Vout is opening" );
52 var_Create( p_vout, "drawable", VLC_VAR_DOINHERIT );
53 var_Get( p_vout, "drawable", &value_drawable );
55 p_vout->p_sys->o_pool = [[NSAutoreleasePool alloc] init];
57 o_cocoaglview_container = (id) value_drawable.i_int;
58 if (!o_cocoaglview_container)
60 msg_Warn( p_vout, "No drawable!, spawing a window" );
63 p_vout->p_sys->b_embedded = VLC_FALSE;
66 /* Create the GL view */
67 struct args { vout_thread_t * p_vout; id <VLCOpenGLVoutEmbedding> container; } args = { p_vout, o_cocoaglview_container };
69 [VLCOpenGLVoutView performSelectorOnMainThread:@selector(autoinitOpenGLVoutViewIntVoutWithContainer:)
70 withObject:[NSData dataWithBytes: &args length: sizeof(struct args)] waitUntilDone:YES];
72 [[p_vout->p_sys->o_glview openGLContext] makeCurrentContext];
76 /*****************************************************************************
78 *****************************************************************************/
79 void cocoaglvoutviewEnd( vout_thread_t * p_vout )
81 id <VLCOpenGLVoutEmbedding> o_cocoaglview_container;
83 msg_Dbg( p_vout, "Mac OS X Vout is closing" );
84 var_Destroy( p_vout, "drawable" );
86 o_cocoaglview_container = [p_vout->p_sys->o_glview container];
88 /* Make sure our view won't request the vout now */
89 [p_vout->p_sys->o_glview detachFromVout];
90 msg_Dbg( p_vout, "Mac OS X Vout is closing" );
92 /* Let the view go, _without_blocking_ */
93 [p_vout->p_sys->o_glview performSelectorOnMainThread:@selector(removeFromSuperview) withObject:NULL waitUntilDone:NO];
95 if( [(id)o_cocoaglview_container respondsToSelector:@selector(removeVoutSubview:)] )
96 [o_cocoaglview_container removeVoutSubview: p_vout->p_sys->o_glview];
98 [p_vout->p_sys->o_glview release];
100 [p_vout->p_sys->o_pool release];
104 /*****************************************************************************
105 * cocoaglvoutviewManage
106 *****************************************************************************/
107 int cocoaglvoutviewManage( vout_thread_t * p_vout )
109 if( p_vout->i_changes & VOUT_ASPECT_CHANGE )
111 [p_vout->p_sys->o_glview reshape];
112 p_vout->i_changes &= ~VOUT_ASPECT_CHANGE;
114 if( p_vout->i_changes & VOUT_CROP_CHANGE )
116 [p_vout->p_sys->o_glview reshape];
117 p_vout->i_changes &= ~VOUT_CROP_CHANGE;
120 if( p_vout->i_changes & VOUT_FULLSCREEN_CHANGE )
122 NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init];
124 p_vout->b_fullscreen = !p_vout->b_fullscreen;
126 if( p_vout->b_fullscreen )
127 [[p_vout->p_sys->o_glview container] enterFullscreen];
129 [[p_vout->p_sys->o_glview container] leaveFullscreen];
133 p_vout->i_changes &= ~VOUT_FULLSCREEN_CHANGE;
136 //[[p_vout->p_sys->o_glview container] manage];
140 /*****************************************************************************
141 * cocoaglvoutviewControl: control facility for the vout
142 *****************************************************************************/
143 int cocoaglvoutviewControl( vout_thread_t *p_vout, int i_query, va_list args )
149 case VOUT_SET_STAY_ON_TOP:
150 b_arg = va_arg( args, vlc_bool_t );
151 [[p_vout->p_sys->o_glview container] setOnTop: b_arg];
157 return vout_vaControlDefault( p_vout, i_query, args );
161 /*****************************************************************************
162 * cocoaglvoutviewSwap
163 *****************************************************************************/
164 void cocoaglvoutviewSwap( vout_thread_t * p_vout )
166 p_vout->p_sys->b_got_frame = VLC_TRUE;
167 [[p_vout->p_sys->o_glview openGLContext] flushBuffer];
170 /*****************************************************************************
171 * cocoaglvoutviewLock
172 *****************************************************************************/
173 int cocoaglvoutviewLock( vout_thread_t * p_vout )
175 if( kCGLNoError == CGLLockContext([[p_vout->p_sys->o_glview openGLContext] CGLContextObj]) )
177 [[p_vout->p_sys->o_glview openGLContext] makeCurrentContext];
183 /*****************************************************************************
184 * cocoaglvoutviewUnlock
185 *****************************************************************************/
186 void cocoaglvoutviewUnlock( vout_thread_t * p_vout )
188 CGLUnlockContext([[p_vout->p_sys->o_glview openGLContext] CGLContextObj]);
191 /*****************************************************************************
192 * VLCOpenGLVoutView implementation
193 *****************************************************************************/
194 @implementation VLCOpenGLVoutView
196 /* Init a new gl view and register it to both the framework and the
197 * vout_thread_t. Must be called from main thread. */
198 + (void) autoinitOpenGLVoutViewIntVoutWithContainer: (NSData *) argsAsData
200 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
201 struct args { vout_thread_t * p_vout; id <VLCOpenGLVoutEmbedding> container; } *
202 args = (struct args *)[argsAsData bytes];
203 VLCOpenGLVoutView * oglview;
205 if( !args->container )
207 args->container = [[VLCMinimalVoutWindow alloc] initWithContentRect: NSMakeRect( 0, 0, args->p_vout->i_window_width, args->p_vout->i_window_height )];
208 [(VLCMinimalVoutWindow *)args->container makeKeyAndOrderFront: nil];
210 oglview = [[VLCOpenGLVoutView alloc] initWithVout: args->p_vout container: args->container];
212 args->p_vout->p_sys->o_glview = oglview;
213 [args->container addVoutSubview: oglview];
220 [objectLock dealloc];
224 - (void)removeFromSuperview
226 [super removeFromSuperview];
230 - (id) initWithVout: (vout_thread_t *) vout container: (id <VLCOpenGLVoutEmbedding>) aContainer
232 NSOpenGLPixelFormatAttribute attribs[] =
234 NSOpenGLPFADoubleBuffer,
235 NSOpenGLPFAAccelerated,
236 NSOpenGLPFANoRecovery,
237 NSOpenGLPFAColorSize, 24,
238 NSOpenGLPFAAlphaSize, 8,
239 NSOpenGLPFADepthSize, 24,
244 NSOpenGLPixelFormat * fmt = [[NSOpenGLPixelFormat alloc]
245 initWithAttributes: attribs];
249 msg_Warn( p_vout, "could not create OpenGL video output" );
253 if( self = [super initWithFrame: NSMakeRect(0,0,10,10) pixelFormat: fmt] )
256 container = aContainer;
257 objectLock = [[NSLock alloc] init];
261 [[self openGLContext] makeCurrentContext];
262 [[self openGLContext] update];
264 /* Swap buffers only during the vertical retrace of the monitor.
265 http://developer.apple.com/documentation/GraphicsImaging/
266 Conceptual/OpenGL/chap5/chapter_5_section_44.html */
267 long params[] = { 1 };
268 CGLSetParameter( CGLGetCurrentContext(), kCGLCPSwapInterval,
274 - (void) detachFromVout
281 - (id <VLCOpenGLVoutEmbedding>) container
291 vlc_object_detach( p_vout );
292 vlc_object_release( p_vout );
293 vout_Destroy( (vout_thread_t *)p_vout );
310 cocoaglvoutviewLock( p_vout );
311 NSRect bounds = [self bounds];
313 if( [[self container] stretchesVideo] )
315 x = bounds.size.width;
316 y = bounds.size.height;
318 else if( bounds.size.height * p_vout->fmt_in.i_visible_width *
319 p_vout->fmt_in.i_sar_num <
320 bounds.size.width * p_vout->fmt_in.i_visible_height *
321 p_vout->fmt_in.i_sar_den )
323 x = ( bounds.size.height * p_vout->fmt_in.i_visible_width *
324 p_vout->fmt_in.i_sar_num ) /
325 ( p_vout->fmt_in.i_visible_height * p_vout->fmt_in.i_sar_den);
327 y = bounds.size.height;
331 x = bounds.size.width;
332 y = ( bounds.size.width * p_vout->fmt_in.i_visible_height *
333 p_vout->fmt_in.i_sar_den) /
334 ( p_vout->fmt_in.i_visible_width * p_vout->fmt_in.i_sar_num );
337 glViewport( ( bounds.size.width - x ) / 2,
338 ( bounds.size.height - y ) / 2, x, y );
340 if( p_vout->p_sys->b_got_frame )
342 /* Ask the opengl module to redraw */
343 vout_thread_t * p_parent;
344 p_parent = (vout_thread_t *) p_vout->p_parent;
345 cocoaglvoutviewUnlock( p_vout );
346 if( p_parent && p_parent->pf_display )
348 p_parent->pf_display( p_parent, NULL );
353 glClear( GL_COLOR_BUFFER_BIT );
354 cocoaglvoutviewUnlock( p_vout );
362 if( kCGLNoError != CGLLockContext([[self openGLContext] CGLContextObj]) )
365 CGLUnlockContext([[p_vout->p_sys->o_glview openGLContext] CGLContextObj]);
368 - (void) drawRect: (NSRect) rect
370 if( kCGLNoError != CGLLockContext([[self openGLContext] CGLContextObj]) )
372 [[self openGLContext] flushBuffer];
373 [super drawRect:rect];
374 CGLUnlockContext([[p_vout->p_sys->o_glview openGLContext] CGLContextObj]);
377 - (BOOL)mouseDownCanMoveWindow