x11.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:5k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * x11.c: Screen capture module.
  3.  *****************************************************************************
  4.  * Copyright (C) 2004-2008 the VideoLAN team
  5.  * $Id: 8723f150149cfdd333398818eae0d209ee2295b8 $
  6.  *
  7.  * Authors: Gildas Bazin <gbazin@videolan.org>
  8.  *          Antoine Cellerier <dionoea at videolan dot org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include <X11/Xlib.h>
  32. #include <X11/Xutil.h>
  33. #include "screen.h"
  34. int screen_InitCapture( demux_t *p_demux )
  35. {
  36.     demux_sys_t *p_sys = p_demux->p_sys;
  37.     Display *p_display;
  38.     char *psz_display = var_CreateGetNonEmptyString( p_demux, "x11-display" );
  39.     XWindowAttributes win_info;
  40.     int i_chroma;
  41.     /* Open the display */
  42.     p_display = XOpenDisplay( psz_display );
  43.     free( psz_display );
  44.     if( !p_display )
  45.     {
  46.         msg_Err( p_demux, "cannot open display" );
  47.         return VLC_EGENERIC;
  48.     }
  49.     p_sys->p_data = (void *)p_display;
  50.     /* Get the parameters of the root window */
  51.     if( !XGetWindowAttributes( p_display,
  52.                                DefaultRootWindow( p_display ),
  53.                                &win_info ) )
  54.     {
  55.         msg_Err( p_demux, "can't get root window attributes" );
  56.         XCloseDisplay( p_display );
  57.         return VLC_EGENERIC;
  58.     }
  59.     switch( win_info.depth )
  60.     {
  61.     case 8: /* FIXME: set the palette */
  62.         i_chroma = VLC_FOURCC('R','G','B','2'); break;
  63.     case 15:
  64.         i_chroma = VLC_FOURCC('R','V','1','5'); break;
  65.     case 16:
  66.         i_chroma = VLC_FOURCC('R','V','1','6'); break;
  67.     case 24:
  68.     case 32:
  69.         i_chroma = VLC_FOURCC('R','V','3','2');
  70.         win_info.depth = 32;
  71.         break;
  72.     default:
  73.         msg_Err( p_demux, "unknown screen depth %i", win_info.depth );
  74.         XCloseDisplay( p_display );
  75.         return VLC_EGENERIC;
  76.     }
  77.     es_format_Init( &p_sys->fmt, VIDEO_ES, i_chroma );
  78.     p_sys->fmt.video.i_visible_width =
  79.     p_sys->fmt.video.i_width  = win_info.width;
  80.     p_sys->fmt.video.i_visible_height =
  81.     p_sys->fmt.video.i_height = win_info.height;
  82.     p_sys->fmt.video.i_bits_per_pixel = win_info.depth;
  83.     p_sys->fmt.video.i_chroma = i_chroma;
  84. #if 0
  85.     win_info.visual->red_mask;
  86.     win_info.visual->green_mask;
  87.     win_info.visual->blue_mask;
  88.     win_info.visual->bits_per_rgb;
  89. #endif
  90.     return VLC_SUCCESS;
  91. }
  92. int screen_CloseCapture( demux_t *p_demux )
  93. {
  94.     demux_sys_t *p_sys = p_demux->p_sys;
  95.     Display *p_display = (Display *)p_sys->p_data;
  96.     XCloseDisplay( p_display );
  97.     if( p_sys->p_blend )
  98.     {
  99.         module_unneed( p_sys->p_blend, p_sys->p_blend->p_module );
  100.         vlc_object_detach( p_sys->p_blend );
  101.         vlc_object_release( p_sys->p_blend );
  102.     }
  103.     return VLC_SUCCESS;
  104. }
  105. block_t *screen_Capture( demux_t *p_demux )
  106. {
  107.     demux_sys_t *p_sys = p_demux->p_sys;
  108.     Display *p_display = (Display *)p_sys->p_data;
  109.     block_t *p_block;
  110.     XImage *image;
  111.     int i_size;
  112.     int root_x = 0, root_y = 0;
  113.     if( p_sys->b_follow_mouse || p_sys->p_mouse )
  114.     {
  115.         Window root = DefaultRootWindow( p_display ), child;
  116.         int win_x, win_y;
  117.         unsigned int mask;
  118.         if( XQueryPointer( p_display, root,
  119.             &root, &child, &root_x, &root_y, &win_x, &win_y,
  120.             &mask ) )
  121.         {
  122.             if( p_sys->b_follow_mouse )
  123.                 FollowMouse( p_sys, root_x, root_y );
  124.         }
  125.         else
  126.             msg_Dbg( p_demux, "XQueryPointer() failed" );
  127.     }
  128.     image = XGetImage( p_display, DefaultRootWindow( p_display ),
  129.                        p_sys->i_left, p_sys->i_top, p_sys->fmt.video.i_width,
  130.                        p_sys->fmt.video.i_height, AllPlanes, ZPixmap );
  131.     if( !image )
  132.     {
  133.         msg_Warn( p_demux, "cannot get image" );
  134.         return NULL;
  135.     }
  136.     i_size = image->bytes_per_line * image->height;
  137.     if( !( p_block = block_New( p_demux, i_size ) ) )
  138.     {
  139.         msg_Warn( p_demux, "cannot get block" );
  140.         XDestroyImage( image );
  141.         return NULL;
  142.     }
  143.     vlc_memcpy( p_block->p_buffer, image->data, i_size );
  144.     if( p_sys->p_mouse )
  145.         RenderCursor( p_demux, root_x, root_y,
  146.                       p_block->p_buffer );
  147.     XDestroyImage( image );
  148.     return p_block;
  149. }