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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * x11.c: Screen capture module.
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 VideoLAN
  5.  * $Id: x11.c 8290 2004-07-26 20:29:24Z gbazin $
  6.  *
  7.  * Authors: Gildas Bazin <gbazin@videolan.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>
  27. #include <vlc/vlc.h>
  28. #include <vlc/input.h>
  29. #include <X11/Xlib.h>
  30. #include <X11/Xutil.h>
  31. #include "screen.h"
  32. int screen_InitCapture( demux_t *p_demux )
  33. {
  34.     demux_sys_t *p_sys = p_demux->p_sys;
  35.     Display *p_display;
  36.     XWindowAttributes win_info;
  37.     int i_chroma;
  38.     /* Open the display */
  39.     p_display = XOpenDisplay( NULL );
  40.     if( !p_display )
  41.     {
  42.         msg_Err( p_demux, "cannot open display" );
  43.         return VLC_EGENERIC;
  44.     }
  45.     p_sys->p_data = (void *)p_display;
  46.     /* Get the parameters of the root window */
  47.     if( !XGetWindowAttributes( p_display,
  48.                                DefaultRootWindow( p_display ),
  49.                                &win_info ) )
  50.     {
  51.         msg_Err( p_demux, "can't get root window attributes" );
  52.         XCloseDisplay( p_display );
  53.         return VLC_EGENERIC;
  54.     }
  55.     switch( win_info.depth )
  56.     {
  57.     case 8: /* FIXME: set the palette */
  58.         i_chroma = VLC_FOURCC('R','G','B','2'); break;
  59.     case 15:
  60.         i_chroma = VLC_FOURCC('R','V','1','5'); break;
  61.     case 16:
  62.         i_chroma = VLC_FOURCC('R','V','1','6'); break;
  63.     case 24:
  64.         i_chroma = VLC_FOURCC('R','V','2','4'); break;
  65.     case 32:
  66.         i_chroma = VLC_FOURCC('R','V','3','2'); break;
  67.     default:
  68.         msg_Err( p_demux, "unknown screen depth %i", win_info.depth );
  69.         XCloseDisplay( p_display );
  70.         return VLC_EGENERIC;
  71.     }
  72.     es_format_Init( &p_sys->fmt, VIDEO_ES, i_chroma );
  73.     p_sys->fmt.video.i_width  = win_info.width;
  74.     p_sys->fmt.video.i_height = win_info.height;
  75.     p_sys->fmt.video.i_bits_per_pixel = win_info.depth;
  76. #if 0
  77.     win_info.visual->red_mask;
  78.     win_info.visual->green_mask;
  79.     win_info.visual->blue_mask;
  80.     win_info.visual->bits_per_rgb;
  81. #endif
  82.     return VLC_SUCCESS;
  83. }
  84. int screen_CloseCapture( demux_t *p_demux )
  85. {
  86.     demux_sys_t *p_sys = p_demux->p_sys;
  87.     Display *p_display = (Display *)p_sys->p_data;
  88.     XCloseDisplay( p_display );
  89.     return VLC_SUCCESS;
  90. }
  91. block_t *screen_Capture( demux_t *p_demux )
  92. {
  93.     demux_sys_t *p_sys = p_demux->p_sys;
  94.     Display *p_display = (Display *)p_sys->p_data;
  95.     block_t *p_block;
  96.     XImage *image;
  97.     int i_size;
  98.     image = XGetImage( p_display, DefaultRootWindow( p_display ),
  99.                        0, 0, p_sys->fmt.video.i_width,
  100.                        p_sys->fmt.video.i_height, AllPlanes, ZPixmap );
  101.     if( !image )
  102.     {
  103.         msg_Warn( p_demux, "cannot get image" );
  104.         return 0;
  105.     }
  106.     i_size = image->bytes_per_line * image->height;
  107.     if( !( p_block = block_New( p_demux, i_size ) ) )
  108.     {
  109.         msg_Warn( p_demux, "cannot get block" );
  110.         XDestroyImage( image );
  111.         return 0;
  112.     }
  113.     memcpy( p_block->p_buffer, image->data, i_size );
  114.     XDestroyImage( image );
  115.     return p_block;
  116. }