/***************************************************************************** * voutgl.m: MacOS X OpenGL provider ***************************************************************************** * Copyright (C) 2001-2007 the VideoLAN team * $Id$ * * Authors: Colin Delacroix * Florian G. Pflug * Jon Lech Johansen * Derk-Jan Hartman * Eric Petit * Benjamin Pracht * Damien Fouilleul * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ /***************************************************************************** * Preamble *****************************************************************************/ #include "intf.h" #include "voutgl.h" int OpenVideoGL ( vlc_object_t * p_this ) { vout_thread_t * p_vout = (vout_thread_t *) p_this; vlc_value_t value_drawable; if( !CGDisplayUsesOpenGLAcceleration( kCGDirectMainDisplay ) ) { msg_Warn( p_vout, "No OpenGL hardware acceleration found. " "Video display will be slow" ); return( 1 ); } msg_Dbg( p_vout, "display is Quartz Extreme accelerated" ); p_vout->p_sys = malloc( sizeof( vout_sys_t ) ); if( p_vout->p_sys == NULL ) return( 1 ); memset( p_vout->p_sys, 0, sizeof( vout_sys_t ) ); var_Get( p_vout->p_libvlc, "drawable", &value_drawable ); if( 0 /* Are we in the mozilla plugin ? XXX: get that from drawable */ ) { p_vout->pf_init = aglInit; p_vout->pf_end = aglEnd; p_vout->pf_manage = aglManage; p_vout->pf_control = aglControl; p_vout->pf_swap = aglSwap; p_vout->pf_lock = aglLock; p_vout->pf_unlock = aglUnlock; } else { /* Let's use the VLCOpenGLVoutView.m class */ p_vout->pf_init = cocoaglvoutviewInit; p_vout->pf_end = cocoaglvoutviewEnd; p_vout->pf_manage = cocoaglvoutviewManage; p_vout->pf_control= cocoaglvoutviewControl; p_vout->pf_swap = cocoaglvoutviewSwap; p_vout->pf_lock = cocoaglvoutviewLock; p_vout->pf_unlock = cocoaglvoutviewUnlock; } p_vout->p_sys->b_got_frame = false; return VLC_SUCCESS; } void CloseVideoGL ( vlc_object_t * p_this ) { vout_thread_t * p_vout = (vout_thread_t *) p_this; /* Clean up */ free( p_vout->p_sys ); }