x11.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:4k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * x11.c : X11 plugin for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 1998-2001 VideoLAN
  5.  * $Id: x11.c 9268 2004-11-10 13:01:48Z gbazin $
  6.  *
  7.  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  8.  *          Samuel Hocevar <sam@zoy.org>
  9.  *          David Kennedy <dkennedy@tinytoad.com>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  24.  *****************************************************************************/
  25. /*****************************************************************************
  26.  * Preamble
  27.  *****************************************************************************/
  28. #include <stdlib.h>                                      /* malloc(), free() */
  29. #include <string.h>                                            /* strerror() */
  30. #include <vlc/vlc.h>
  31. /*****************************************************************************
  32.  * Exported prototypes
  33.  *****************************************************************************/
  34. extern int  E_(Activate)   ( vlc_object_t * );
  35. extern void E_(Deactivate) ( vlc_object_t * );
  36. /*****************************************************************************
  37.  * Module descriptor
  38.  *****************************************************************************/
  39. #define ALT_FS_TEXT N_("Alternate fullscreen method")
  40. #define ALT_FS_LONGTEXT N_( 
  41.     "There are two ways to make a fullscreen window, unfortunately each one " 
  42.     "has its drawbacks.n" 
  43.     "1) Let the window manager handle your fullscreen window (default), but " 
  44.     "things like taskbars will likely show on top of the video.n" 
  45.     "2) Completely bypass the window manager, but then nothing will be able " 
  46.     "to show on top of the video.")
  47. #define DISPLAY_TEXT N_("X11 display name")
  48. #define DISPLAY_LONGTEXT N_( 
  49.     "Specify the X11 hardware display you want to use. By default VLC will " 
  50.     "use the value of the DISPLAY environment variable.")
  51. #define SHM_TEXT N_("Use shared memory")
  52. #define SHM_LONGTEXT N_( 
  53.     "Use shared memory to communicate between VLC and the X server.")
  54. #define SCREEN_TEXT N_("choose the screen to be used for fullscreen mode.")
  55. #define SCREEN_LONGTEXT N_( 
  56.     "Choose the screen you want to use in fullscreen mode. For instance " 
  57.     "set it to 0 for first screen, 1 for the second.")
  58. vlc_module_begin();
  59.     add_string( "x11-display", NULL, NULL, DISPLAY_TEXT, DISPLAY_LONGTEXT, VLC_TRUE );
  60.     add_bool( "x11-altfullscreen", 0, NULL, ALT_FS_TEXT, ALT_FS_LONGTEXT, VLC_TRUE );
  61. #ifdef HAVE_SYS_SHM_H
  62.     add_bool( "x11-shm", 1, NULL, SHM_TEXT, SHM_LONGTEXT, VLC_TRUE );
  63. #endif
  64. #ifdef HAVE_XINERAMA
  65.     add_integer ( "x11-xineramascreen", 0, NULL, SCREEN_TEXT, SCREEN_LONGTEXT, VLC_TRUE );
  66. #endif
  67.     set_description( _("X11 video output") );
  68.     set_capability( "video output", 70 );
  69.     set_callbacks( E_(Activate), E_(Deactivate) );
  70. vlc_module_end();