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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * xcommon.h: Defines common to the X11 and XVideo plugins
  3.  *****************************************************************************
  4.  * Copyright (C) 1998-2001 VideoLAN
  5.  * $Id: xcommon.h 8243 2004-07-22 21:27:45Z gbazin $
  6.  *
  7.  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  8.  *          Samuel Hocevar <sam@zoy.org>
  9.  *          David Kennedy <dkennedy@tinytoad.com>
  10.  *          Gildas Bazin <gbazin@netcourrier.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.  * Defines
  28.  *****************************************************************************/
  29. #ifdef MODULE_NAME_IS_xvideo
  30. #   define IMAGE_TYPE     XvImage
  31. #   define EXTRA_ARGS     int i_xvport, int i_chroma, int i_bits_per_pixel
  32. #   define EXTRA_ARGS_SHM int i_xvport, int i_chroma, XShmSegmentInfo *p_shm
  33. #   define DATA_SIZE(p)   (p)->data_size
  34. #   define IMAGE_FREE     XFree      /* There is nothing like XvDestroyImage */
  35. #else
  36. #   define IMAGE_TYPE     XImage
  37. #   define EXTRA_ARGS     Visual *p_visual, int i_depth, int i_bytes_per_pixel
  38. #   define EXTRA_ARGS_SHM Visual *p_visual, int i_depth, XShmSegmentInfo *p_shm
  39. #   define DATA_SIZE(p)   ((p)->bytes_per_line * (p)->height)
  40. #   define IMAGE_FREE     XDestroyImage
  41. #endif
  42. #define X11_FOURCC( a, b, c, d ) 
  43.         ( ((uint32_t)a) | ( ((uint32_t)b) << 8 ) 
  44.            | ( ((uint32_t)c) << 16 ) | ( ((uint32_t)d) << 24 ) )
  45. #define VLC2X11_FOURCC( i ) 
  46.         X11_FOURCC( ((char *)&i)[0], ((char *)&i)[1], ((char *)&i)[2], 
  47.                     ((char *)&i)[3] )
  48. #define X112VLC_FOURCC( i ) 
  49.         VLC_FOURCC( i & 0xff, (i >> 8) & 0xff, (i >> 16) & 0xff, 
  50.                     (i >> 24) & 0xff )
  51. /*****************************************************************************
  52.  * x11_window_t: X11 window descriptor
  53.  *****************************************************************************
  54.  * This structure contains all the data necessary to describe an X11 window.
  55.  *****************************************************************************/
  56. typedef struct x11_window_t
  57. {
  58.     Window              owner_window;               /* owner window (if any) */
  59.     Window              base_window;                          /* base window */
  60.     Window              video_window;     /* sub-window for displaying video */
  61.     GC                  gc;              /* graphic context instance handler */
  62.     unsigned int        i_width;                             /* window width */
  63.     unsigned int        i_height;                           /* window height */
  64.     int                 i_x;                          /* window x coordinate */
  65.     int                 i_y;                          /* window y coordinate */
  66.     Atom                wm_protocols;
  67.     Atom                wm_delete_window;
  68. #ifdef HAVE_XINERAMA
  69.     int                 i_screen;
  70. #endif
  71. } x11_window_t;
  72. /*****************************************************************************
  73.  * vout_sys_t: video output method descriptor
  74.  *****************************************************************************
  75.  * This structure is part of the video output thread descriptor.
  76.  * It describes the X11 and XVideo specific properties of an output thread.
  77.  *****************************************************************************/
  78. struct vout_sys_t
  79. {
  80.     /* Internal settings and properties */
  81.     Display *           p_display;                        /* display pointer */
  82.     Visual *            p_visual;                          /* visual pointer */
  83.     int                 i_screen;                           /* screen number */
  84.     vlc_mutex_t         lock;
  85.     /* Our current window */
  86.     x11_window_t *      p_win;
  87.     /* Our two windows */
  88.     x11_window_t        original_window;
  89.     x11_window_t        fullscreen_window;
  90.     /* X11 generic properties */
  91.     vlc_bool_t          b_altfullscreen;          /* which fullscreen method */
  92. #ifdef HAVE_SYS_SHM_H
  93.     vlc_bool_t          b_shm;               /* shared memory extension flag */
  94. #endif
  95. #ifdef MODULE_NAME_IS_xvideo
  96.     int                 i_xvport;
  97. #else
  98.     Colormap            colormap;               /* colormap used (8bpp only) */
  99.     unsigned int        i_screen_depth;
  100.     unsigned int        i_bytes_per_pixel;
  101.     unsigned int        i_bytes_per_line;
  102. #endif
  103.     /* Screen saver properties */
  104.     unsigned int        i_ss_timeout;                             /* timeout */
  105.     unsigned int        i_ss_interval;           /* interval between changes */
  106.     unsigned int        i_ss_blanking;                      /* blanking mode */
  107.     unsigned int        i_ss_exposure;                      /* exposure mode */
  108. #ifdef DPMSINFO_IN_DPMS_H
  109.     BOOL                b_ss_dpms;                              /* DPMS mode */
  110. #endif
  111.     /* Mouse pointer properties */
  112.     vlc_bool_t          b_mouse_pointer_visible;
  113.     mtime_t             i_time_mouse_last_moved; /* used to auto-hide pointer*/
  114.     Cursor              blank_cursor;                   /* the hidden cursor */
  115.     mtime_t             i_time_button_last_pressed;   /* to track dbl-clicks */
  116.     Pixmap              cursor_pixmap;
  117.     /* Window manager properties */
  118.     Atom                net_wm_state;
  119.     Atom                net_wm_state_fullscreen;
  120.     vlc_bool_t          b_net_wm_state_fullscreen;
  121.     Atom                net_wm_state_above;
  122.     vlc_bool_t          b_net_wm_state_above;
  123.     Atom                net_wm_state_stays_on_top;
  124.     vlc_bool_t          b_net_wm_state_stays_on_top;
  125.     Atom                net_wm_state_below;
  126.     vlc_bool_t          b_net_wm_state_below;
  127. #ifdef MODULE_NAME_IS_glx
  128.     /* GLX properties */
  129.     int                 b_glx13;
  130.     GLXContext          gwctx;
  131.     GLXWindow           gwnd;
  132. #endif
  133. };
  134. /*****************************************************************************
  135.  * picture_sys_t: direct buffer method descriptor
  136.  *****************************************************************************
  137.  * This structure is part of the picture descriptor, it describes the
  138.  * XVideo specific properties of a direct buffer.
  139.  *****************************************************************************/
  140. struct picture_sys_t
  141. {
  142.     IMAGE_TYPE *        p_image;
  143. #ifdef HAVE_SYS_SHM_H
  144.     XShmSegmentInfo     shminfo;       /* shared memory zone information */
  145. #endif
  146. };
  147. /*****************************************************************************
  148.  * mwmhints_t: window manager hints
  149.  *****************************************************************************
  150.  * Fullscreen needs to be able to hide the wm decorations so we provide
  151.  * this structure to make it easier.
  152.  *****************************************************************************/
  153. #define MWM_HINTS_DECORATIONS   (1L << 1)
  154. #define PROP_MWM_HINTS_ELEMENTS 5
  155. typedef struct mwmhints_t
  156. {
  157.     uint32_t flags;
  158.     uint32_t functions;
  159.     uint32_t decorations;
  160.     int32_t  input_mode;
  161.     uint32_t status;
  162. } mwmhints_t;
  163. /*****************************************************************************
  164.  * Chroma defines
  165.  *****************************************************************************/
  166. #ifdef MODULE_NAME_IS_xvideo
  167. #   define MAX_DIRECTBUFFERS 10
  168. #else
  169. #   define MAX_DIRECTBUFFERS 2
  170. #endif