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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * xvideo.c : Xvideo plugin for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 1998-2001 VideoLAN
  5.  * $Id: xvideo.c 7522 2004-04-27 16:35:15Z sam $
  6.  *
  7.  * Authors: Shane Harper <shanegh@optusnet.com.au>
  8.  *          Vincent Seguin <seguin@via.ecp.fr>
  9.  *          Samuel Hocevar <sam@zoy.org>
  10.  *          David Kennedy <dkennedy@tinytoad.com>
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  25.  *****************************************************************************/
  26. /*****************************************************************************
  27.  * Preamble
  28.  *****************************************************************************/
  29. #include <stdlib.h>                                      /* malloc(), free() */
  30. #include <string.h>                                            /* strerror() */
  31. #include <vlc/vlc.h>
  32. /*****************************************************************************
  33.  * Exported prototypes
  34.  *****************************************************************************/
  35. extern int  E_(Activate)   ( vlc_object_t * );
  36. extern void E_(Deactivate) ( vlc_object_t * );
  37. /*****************************************************************************
  38.  * Module descriptor
  39.  *****************************************************************************/
  40. #define ADAPTOR_TEXT N_("XVideo adaptor number")
  41. #define ADAPTOR_LONGTEXT N_( 
  42.     "If you graphics card provides several adaptors, this option allows you " 
  43.     "to choose which one will be used (you shouldn't have to change this).")
  44. #define ALT_FS_TEXT N_("Alternate fullscreen method")
  45. #define ALT_FS_LONGTEXT N_( 
  46.     "There are two ways to make a fullscreen window, unfortunately each one " 
  47.     "has its drawbacks.n" 
  48.     "1) Let the window manager handle your fullscreen window (default), but " 
  49.     "things like taskbars will likely show on top of the video.n" 
  50.     "2) Completely bypass the window manager, but then nothing will be able " 
  51.     "to show on top of the video.")
  52. #define DISPLAY_TEXT N_("X11 display name")
  53. #define DISPLAY_LONGTEXT N_( 
  54.     "Specify the X11 hardware display you want to use. By default VLC will " 
  55.     "use the value of the DISPLAY environment variable.")
  56. #define CHROMA_TEXT N_("XVimage chroma format")
  57. #define CHROMA_LONGTEXT N_( 
  58.     "Force the XVideo renderer to use a specific chroma format instead of " 
  59.     "trying to improve performances by using the most efficient one.")
  60. #define SHM_TEXT N_("Use shared memory")
  61. #define SHM_LONGTEXT N_( 
  62.     "Use shared memory to communicate between VLC and the X server.")
  63. #define SCREEN_TEXT N_("Screen to be used for fullscreen mode.")
  64. #define SCREEN_LONGTEXT N_( 
  65.     "Choose the screen you want to use in fullscreen mode. For instance " 
  66.     "set it to 0 for first screen, 1 for the second.")
  67. vlc_module_begin();
  68.     add_string( "xvideo-display", NULL, NULL, DISPLAY_TEXT, DISPLAY_LONGTEXT, VLC_TRUE );
  69.     add_integer( "xvideo-adaptor", -1, NULL, ADAPTOR_TEXT, ADAPTOR_LONGTEXT, VLC_TRUE );
  70.     add_bool( "xvideo-altfullscreen", 0, NULL, ALT_FS_TEXT, ALT_FS_LONGTEXT, VLC_TRUE );
  71.     add_string( "xvideo-chroma", NULL, NULL, CHROMA_TEXT, CHROMA_LONGTEXT, VLC_TRUE );
  72. #ifdef HAVE_SYS_SHM_H
  73.     add_bool( "xvideo-shm", 1, NULL, SHM_TEXT, SHM_LONGTEXT, VLC_TRUE );
  74. #endif
  75. #ifdef HAVE_XINERAMA
  76.     add_integer ( "xvideo-xineramascreen", 0, NULL, SCREEN_TEXT, SCREEN_LONGTEXT, VLC_TRUE );
  77. #endif
  78.     set_description( _("XVideo extension video output") );
  79.     set_capability( "video output", 150 );
  80.     set_callbacks( E_(Activate), E_(Deactivate) );
  81. vlc_module_end();
  82. /* following functions are local */
  83. #if 0
  84. /*****************************************************************************
  85.  * XVideoSetAttribute
  86.  *****************************************************************************
  87.  * This function can be used to set attributes, e.g. XV_BRIGHTNESS and
  88.  * XV_CONTRAST. "f_value" should be in the range of 0 to 1.
  89.  *****************************************************************************/
  90. static void XVideoSetAttribute( vout_thread_t *p_vout,
  91.                                 char *attr_name, float f_value )
  92. {
  93.     int             i_attrib;
  94.     XvAttribute    *p_attrib;
  95.     Display        *p_display = p_vout->p_sys->p_display;
  96.     int             i_xvport  = p_vout->p_sys->i_xvport;
  97.     p_attrib = XvQueryPortAttributes( p_display, i_xvport, &i_attrib );
  98.     do
  99.     {
  100.         i_attrib--;
  101.         if( i_attrib >= 0 && !strcmp( p_attrib[ i_attrib ].name, attr_name ) )
  102.         {
  103.             int i_sv = f_value * ( p_attrib[ i_attrib ].max_value
  104.                                     - p_attrib[ i_attrib ].min_value + 1 )
  105.                         + p_attrib[ i_attrib ].min_value;
  106.             XvSetPortAttribute( p_display, i_xvport,
  107.                             XInternAtom( p_display, attr_name, False ), i_sv );
  108.             break;
  109.         }
  110.     } while( i_attrib > 0 );
  111.     if( p_attrib )
  112.         XFree( p_attrib );
  113. }
  114. #endif