|
|
|
@ -1,7 +1,7 @@ |
|
|
|
/*****************************************************************************
|
|
|
|
* macosx.m: Mac OS X module for vlc |
|
|
|
* macosx.m: minimal Mac OS X module for vlc |
|
|
|
***************************************************************************** |
|
|
|
* Copyright (C) 2001-2006 the VideoLAN team |
|
|
|
* Copyright (C) 2001-2007 the VideoLAN team |
|
|
|
* $Id$ |
|
|
|
* |
|
|
|
* Authors: Colin Delacroix <colin@zoy.org> |
|
|
|
@ -48,7 +48,7 @@ void E_(CloseVideoGL) ( vlc_object_t * ); |
|
|
|
vlc_module_begin(); |
|
|
|
/* Minimal interface. see intf.m */ |
|
|
|
set_shortname( _( "minimal_macosx" )); |
|
|
|
set_description( _("Mac OS X minimal interface") ); |
|
|
|
set_description( _("Minimal Mac OS X interface") ); |
|
|
|
set_capability( "interface", 50 ); |
|
|
|
set_callbacks( E_(OpenIntf), E_(CloseIntf) ); |
|
|
|
set_category( CAT_INTERFACE ); |
|
|
|
@ -56,7 +56,7 @@ vlc_module_begin(); |
|
|
|
|
|
|
|
add_submodule(); |
|
|
|
/* Will be loaded even without interface module. see voutgl.m */ |
|
|
|
set_description( "Mac OS X minimal OpenGL video output (opens a borderless window)" ); |
|
|
|
set_description( _("Minimal Mac OS X OpenGL video output (opens a borderless window)") ); |
|
|
|
set_capability( "opengl provider", 50 ); |
|
|
|
set_category( CAT_VIDEO); |
|
|
|
set_subcategory( SUBCAT_VIDEO_VOUT ); |
|
|
|
|