⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 voutgl.m

📁 VLC Player Source Code
💻 M
字号:
/***************************************************************************** * voutgl.m: MacOS X OpenGL provider ***************************************************************************** * Copyright (C) 2001-2007 the VideoLAN team * $Id$ * * Authors: Colin Delacroix <colin@zoy.org> *          Florian G. Pflug <fgp@phlo.org> *          Jon Lech Johansen <jon-vl@nanocrew.net> *          Derk-Jan Hartman <hartman at videolan dot org> *          Eric Petit <titer@m0k.org> *          Benjamin Pracht <bigben at videolan dot org> *          Damien Fouilleul <damienf at videolan dot org> * * 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 )    {        msg_Err( p_vout, "out of memory" );        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 );}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -