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

📄 macosx.m

📁 VLC媒体播放程序
💻 M
字号:
/***************************************************************************** * macosx.m: MacOS X module for vlc ***************************************************************************** * Copyright (C) 2001-2003 VideoLAN * $Id: macosx.m,v 1.22 2004/02/26 13:04:55 hartman Exp $ * * Authors: Colin Delacroix <colin@zoy.org> *          Eugenio Jarosiewicz <ej0@cise.ufl.edu> *          Florian G. Pflug <fgp@phlo.org> *          Jon Lech Johansen <jon-vl@nanocrew.net> * * 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., 59 Temple Place - Suite 330, Boston, MA  02111, USA. *****************************************************************************//***************************************************************************** * Preamble *****************************************************************************/#include <stdlib.h>                                      /* malloc(), free() */#include <string.h>#include <vlc/vlc.h>/***************************************************************************** * External prototypes *****************************************************************************/int  E_(OpenIntf)     ( vlc_object_t * );void E_(CloseIntf)    ( vlc_object_t * );int  E_(OpenVideo)    ( vlc_object_t * );void E_(CloseVideo)   ( vlc_object_t * );/***************************************************************************** * Module descriptor *****************************************************************************/#define VDEV_TEXT N_("Video device")#define VDEV_LONGTEXT N_("Choose a number corresponding to " \    "a screen in you video device selection menu and this screen " \    "will be used by default as the screen for 'fullscreen'.")#define OPAQUENESS_TEXT N_("Opaqueness")#define OPAQUENESS_LONGTEXT N_( \    "Set the transparency of the video output. 1 is non-transparent (default) " \    "0 is fully transparent.")    #define STRETCH_TEXT N_("Stretch Aspect Ratio")#define STRETCH_LONGTEXT N_("Instead of keeping the aspect ratio " \        "of the movie when resizing the video, stretch the video " \        "to fill the entire window." )#define OPENGL_TEXT N_("Use OpenGL")#define OPENGL_LONGTEXT N_("Use OpenGL instead of QuickTime to " \        "render the video on the screen.")#define OPENGL_EFFECT_TEXT N_("OpenGL effect")#define OPENGL_EFFECT_LONGTEXT N_("Use 'None' to display the video " \        "without any fantasy, 'Cube' to let the video play on " \        "the faces of a rotating cube, 'Transparent cube' do make this " \        "cube transparent" )static char * effect_list[] = { "none", "cube", "transparent-cube" };static char * effect_list_text[] = { N_("None"), N_("Cube"),                                     N_("Transparent cube") };    vlc_module_begin();    set_description( _("MacOS X interface, sound and video") );    set_capability( "interface", 100 );    set_callbacks( E_(OpenIntf), E_(CloseIntf) );    add_submodule();        set_capability( "video output", 200 );        set_callbacks( E_(OpenVideo), E_(CloseVideo) );        add_integer( "macosx-vdev", 0, NULL, VDEV_TEXT, VDEV_LONGTEXT,                     VLC_FALSE );        add_bool( "macosx-stretch", 0, NULL, STRETCH_TEXT, STRETCH_LONGTEXT,                     VLC_FALSE );        add_float_with_range( "macosx-opaqueness", 1, 0, 1, NULL,                OPAQUENESS_TEXT, OPAQUENESS_LONGTEXT, VLC_TRUE );        add_bool( "macosx-opengl", 0, NULL, OPENGL_TEXT,                  OPENGL_LONGTEXT, VLC_TRUE );        add_string( "macosx-opengl-effect", "none", NULL,                    OPENGL_EFFECT_TEXT, OPENGL_EFFECT_LONGTEXT,                    VLC_TRUE );        change_string_list( effect_list, effect_list_text, 0 );vlc_module_end();

⌨️ 快捷键说明

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