X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fmacosx%2Fmacosx.m;h=f0df4f2802c366bd5e70377f620f25dcd4162df1;hb=f86df4dac49cb7e17e34e2ffb5979f40a19c8387;hp=dcb3d07064c23267ddb680758ba1b99d423666cb;hpb=156136fb3db5c3fdc14f5dcf3d6ad72cb9274775;p=vlc diff --git a/modules/gui/macosx/macosx.m b/modules/gui/macosx/macosx.m index dcb3d07064..f0df4f2802 100644 --- a/modules/gui/macosx/macosx.m +++ b/modules/gui/macosx/macosx.m @@ -1,8 +1,8 @@ /***************************************************************************** - * macosx.m: MacOS X module for vlc + * macosx.m: Mac OS X module for vlc ***************************************************************************** - * Copyright (C) 2001-2003 VideoLAN - * $Id: macosx.m,v 1.22 2004/02/26 13:04:55 hartman Exp $ + * Copyright (C) 2001-2005 the VideoLAN team + * $Id$ * * Authors: Colin Delacroix * Eugenio Jarosiewicz @@ -38,8 +38,11 @@ int E_(OpenIntf) ( vlc_object_t * ); void E_(CloseIntf) ( vlc_object_t * ); -int E_(OpenVideo) ( vlc_object_t * ); -void E_(CloseVideo) ( vlc_object_t * ); +int E_(OpenVideoQT) ( vlc_object_t * ); +void E_(CloseVideoQT) ( vlc_object_t * ); + +int E_(OpenVideoGL) ( vlc_object_t * ); +void E_(CloseVideoGL) ( vlc_object_t * ); /***************************************************************************** * Module descriptor @@ -59,38 +62,36 @@ void E_(CloseVideo) ( vlc_object_t * ); "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" ) +#define FILL_TEXT N_("Fill fullscreen") +#define FILL_LONGTEXT N_("In fullscreen mode, crop the picture if " \ + "necessary in order to fill the screen without black " \ + "borders (OpenGL only)." ) -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_description( _("Mac OS X interface") ); set_capability( "interface", 100 ); set_callbacks( E_(OpenIntf), E_(CloseIntf) ); + set_category( CAT_INTERFACE ); + set_subcategory( SUBCAT_INTERFACE_GENERAL ); add_submodule(); - set_capability( "video output", 200 ); - set_callbacks( E_(OpenVideo), E_(CloseVideo) ); + set_description( _("Quartz video") ); + set_capability( "video output", 100 ); + set_category( CAT_VIDEO); + set_subcategory( SUBCAT_VIDEO_VOUT ); + set_callbacks( E_(OpenVideoQT), E_(CloseVideoQT) ); 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 ); + add_bool( "macosx-fill", 0, NULL, FILL_TEXT, FILL_LONGTEXT, + VLC_TRUE ); + add_submodule(); + set_description( "Mac OS X OpenGL" ); + set_capability( "opengl provider", 100 ); + set_category( CAT_VIDEO); + set_subcategory( SUBCAT_VIDEO_VOUT ); + set_callbacks( E_(OpenVideoGL), E_(CloseVideoGL) ); vlc_module_end();