]> git.sesse.net Git - vlc/blob - modules/gui/minimal_macosx/voutgl.m
3db8bc526a8996973a7c316fad76125dd47aca32
[vlc] / modules / gui / minimal_macosx / voutgl.m
1 /*****************************************************************************
2  * voutgl.m: MacOS X OpenGL provider
3  *****************************************************************************
4  * Copyright (C) 2001-2007 the VideoLAN team
5  * $Id$
6  *
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  *
15  * This program is free software; you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation; either version 2 of the License, or
18  * (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
28  *****************************************************************************/
29
30 /*****************************************************************************
31  * Preamble
32  *****************************************************************************/
33 #include "intf.h"
34 #include "voutgl.h"
35
36 int E_(OpenVideoGL)  ( vlc_object_t * p_this )
37 {
38     vout_thread_t * p_vout = (vout_thread_t *) p_this;
39     vlc_value_t value_drawable;
40
41     if( !CGDisplayUsesOpenGLAcceleration( kCGDirectMainDisplay ) )
42     {
43         msg_Warn( p_vout, "No OpenGL hardware acceleration found. "
44                           "Video display will be slow" );
45         return( 1 );
46     }
47
48     msg_Dbg( p_vout, "display is Quartz Extreme accelerated" );
49
50     p_vout->p_sys = malloc( sizeof( vout_sys_t ) );
51     if( p_vout->p_sys == NULL )
52     {
53         msg_Err( p_vout, "out of memory" );
54         return( 1 );
55     }
56
57     memset( p_vout->p_sys, 0, sizeof( vout_sys_t ) );
58
59     var_Get( p_vout->p_libvlc, "drawable", &value_drawable );
60     
61     if( 0 /* Are we in the mozilla plugin ? XXX: get that from drawable */ )
62     {
63         p_vout->pf_init             = aglInit;
64         p_vout->pf_end              = aglEnd;
65         p_vout->pf_manage           = aglManage;
66         p_vout->pf_control          = aglControl;
67         p_vout->pf_swap             = aglSwap;
68         p_vout->pf_lock             = aglLock;
69         p_vout->pf_unlock           = aglUnlock;
70     }
71     else
72     {
73         /* Let's use the VLCOpenGLVoutView.m class */
74         p_vout->pf_init   = cocoaglvoutviewInit;
75         p_vout->pf_end    = cocoaglvoutviewEnd;
76         p_vout->pf_manage = cocoaglvoutviewManage;
77         p_vout->pf_control= cocoaglvoutviewControl;
78         p_vout->pf_swap   = cocoaglvoutviewSwap;
79         p_vout->pf_lock   = cocoaglvoutviewLock;
80         p_vout->pf_unlock = cocoaglvoutviewUnlock;
81     }
82     p_vout->p_sys->b_got_frame = VLC_FALSE;
83
84     return VLC_SUCCESS;
85 }
86
87 void E_(CloseVideoGL) ( vlc_object_t * p_this )
88 {
89     vout_thread_t * p_vout = (vout_thread_t *) p_this;
90     /* Clean up */
91     free( p_vout->p_sys );
92 }