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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * win32.c: Screen capture module.
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 VideoLAN
  5.  * $Id: win32.c 8693 2004-09-12 10:30: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 "screen.h"
  30. #ifndef CAPTUREBLT
  31. #   define CAPTUREBLT (DWORD)0x40000000 /* Include layered windows */
  32. #endif
  33. struct screen_data_t
  34. {
  35.     HDC hdc_src;
  36.     HDC hdc_dst;
  37.     BITMAPINFO bmi;
  38.     HGDIOBJ hgdi_backup;
  39.     int i_fragment_size;
  40.     int i_fragment;
  41.     block_t *p_block;
  42. };
  43. int screen_InitCapture( demux_t *p_demux )
  44. {
  45.     demux_sys_t *p_sys = p_demux->p_sys;
  46.     screen_data_t *p_data;
  47.     int i_chroma, i_bits_per_pixel;
  48.     vlc_value_t val;
  49.     p_sys->p_data = p_data = malloc( sizeof( screen_data_t ) );
  50.     /* Get the device context for the whole screen */
  51.     p_data->hdc_src = CreateDC( "DISPLAY", NULL, NULL, NULL );
  52.     if( !p_data->hdc_src )
  53.     {
  54.         msg_Err( p_demux, "cannot get device context" );
  55.         return VLC_EGENERIC;
  56.     }
  57.     p_data->hdc_dst = CreateCompatibleDC( p_data->hdc_src );
  58.     if( !p_data->hdc_dst )
  59.     {
  60.         msg_Err( p_demux, "cannot get compat device context" );
  61.         ReleaseDC( 0, p_data->hdc_src );
  62.         return VLC_EGENERIC;
  63.     }
  64.     i_bits_per_pixel = GetDeviceCaps( p_data->hdc_src, BITSPIXEL );
  65.     switch( i_bits_per_pixel )
  66.     {
  67.     case 8: /* FIXME: set the palette */
  68.         i_chroma = VLC_FOURCC('R','G','B','2'); break;
  69.     case 15:
  70.         i_chroma = VLC_FOURCC('R','V','1','5'); break;
  71.     case 16:
  72.         i_chroma = VLC_FOURCC('R','V','1','6'); break;
  73.     case 24:
  74.         i_chroma = VLC_FOURCC('R','V','2','4'); break;
  75.     case 32:
  76.         i_chroma = VLC_FOURCC('R','V','3','2'); break;
  77.     default:
  78.         msg_Err( p_demux, "unknown screen depth %i",
  79.                  p_sys->fmt.video.i_bits_per_pixel );
  80.         ReleaseDC( 0, p_data->hdc_src );
  81.         ReleaseDC( 0, p_data->hdc_dst );
  82.         return VLC_EGENERIC;
  83.     }
  84. #if 1 /* For now we force RV24 because of chroma inversion in the other cases*/
  85.     i_chroma = VLC_FOURCC('R','V','2','4');
  86.     i_bits_per_pixel = 24;
  87. #endif
  88.     es_format_Init( &p_sys->fmt, VIDEO_ES, i_chroma );
  89.     p_sys->fmt.video.i_width  = GetDeviceCaps( p_data->hdc_src, HORZRES );
  90.     p_sys->fmt.video.i_height = GetDeviceCaps( p_data->hdc_src, VERTRES );
  91.     p_sys->fmt.video.i_bits_per_pixel = i_bits_per_pixel;
  92.     /* Create the bitmap info header */
  93.     p_data->bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
  94.     p_data->bmi.bmiHeader.biWidth = p_sys->fmt.video.i_width;
  95.     p_data->bmi.bmiHeader.biHeight = - p_sys->fmt.video.i_height;
  96.     p_data->bmi.bmiHeader.biPlanes = 1;
  97.     p_data->bmi.bmiHeader.biBitCount = p_sys->fmt.video.i_bits_per_pixel;
  98.     p_data->bmi.bmiHeader.biCompression = BI_RGB;
  99.     p_data->bmi.bmiHeader.biSizeImage = 0;
  100.     p_data->bmi.bmiHeader.biXPelsPerMeter =
  101.         p_data->bmi.bmiHeader.biYPelsPerMeter = 0;
  102.     p_data->bmi.bmiHeader.biClrUsed = 0;
  103.     p_data->bmi.bmiHeader.biClrImportant = 0;
  104.     if( i_chroma == VLC_FOURCC('R','V','2','4') )
  105.     {
  106.         /* This is in BGR format */
  107.         p_sys->fmt.video.i_bmask = 0x00ff0000;
  108.         p_sys->fmt.video.i_gmask = 0x0000ff00;
  109.         p_sys->fmt.video.i_rmask = 0x000000ff;
  110.     }
  111.     var_Create( p_demux, "screen-fragment-size",
  112.                 VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
  113.     var_Get( p_demux, "screen-fragment-size", &val );
  114.     p_data->i_fragment_size =
  115.         val.i_int > 0 ? val.i_int : p_sys->fmt.video.i_height;
  116.     p_data->i_fragment_size =
  117.         val.i_int > p_sys->fmt.video.i_height ? p_sys->fmt.video.i_height :
  118.         p_data->i_fragment_size;
  119.     p_sys->f_fps *= (p_sys->fmt.video.i_height/p_data->i_fragment_size);
  120.     p_sys->i_incr = 1000000 / p_sys->f_fps;
  121.     p_data->i_fragment = 0;
  122.     p_data->p_block = 0;
  123.     return VLC_SUCCESS;
  124. }
  125. int screen_CloseCapture( demux_t *p_demux )
  126. {
  127.     demux_sys_t *p_sys = p_demux->p_sys;
  128.     screen_data_t *p_data = p_sys->p_data;
  129.     if( p_data->p_block ) block_Release( p_data->p_block );
  130.     if( p_data->hgdi_backup)
  131.         SelectObject( p_data->hdc_dst, p_data->hgdi_backup );
  132.     DeleteDC( p_data->hdc_dst );
  133.     ReleaseDC( 0, p_data->hdc_src );
  134.     free( p_data );
  135.     return VLC_SUCCESS;
  136. }
  137. struct block_sys_t
  138. {
  139.     HBITMAP hbmp;
  140. };
  141. static void CaptureBlockRelease( block_t *p_block )
  142. {
  143.     DeleteObject( p_block->p_sys->hbmp );
  144.     free( p_block );
  145. }
  146. static block_t *CaptureBlockNew( demux_t *p_demux )
  147. {
  148.     demux_sys_t *p_sys = p_demux->p_sys;
  149.     screen_data_t *p_data = p_sys->p_data;
  150.     block_t *p_block;
  151.     void *p_buffer;
  152.     int i_buffer;
  153.     HBITMAP hbmp;
  154.     /* Create the bitmap storage space */
  155.     hbmp = CreateDIBSection( p_data->hdc_dst, &p_data->bmi, DIB_RGB_COLORS,
  156.                              &p_buffer, NULL, 0 );
  157.     if( !hbmp || !p_buffer )
  158.     {
  159.         msg_Err( p_demux, "cannot create bitmap" );
  160.         if( hbmp ) DeleteObject( hbmp );
  161.         return NULL;
  162.     }
  163.     /* Select the bitmap into the compatible DC */
  164.     if( !p_data->hgdi_backup )
  165.         p_data->hgdi_backup = SelectObject( p_data->hdc_dst, hbmp );
  166.     else
  167.         SelectObject( p_data->hdc_dst, hbmp );
  168.     if( !p_data->hgdi_backup )
  169.     {
  170.         msg_Err( p_demux, "cannot select bitmap" );
  171.         DeleteObject( hbmp );
  172.         return NULL;
  173.     }
  174.     /* Build block */
  175.     if( !(p_block = malloc( sizeof( block_t ) + sizeof( block_sys_t ) )) )
  176.     {
  177.         DeleteObject( hbmp );
  178.         return NULL;
  179.     }
  180.     memset( p_block, 0, sizeof( block_t ) );
  181.     p_block->p_sys = (block_sys_t *)( (uint8_t *)p_block + sizeof( block_t ) );
  182.     /* Fill all fields */
  183.     i_buffer = (p_sys->fmt.video.i_bits_per_pixel + 7) / 8 *
  184.         p_sys->fmt.video.i_width * p_sys->fmt.video.i_height;
  185.     p_block->p_next         = NULL;
  186.     p_block->i_buffer       = i_buffer;
  187.     p_block->p_buffer       = p_buffer;
  188.     p_block->pf_release     = CaptureBlockRelease;
  189.     p_block->p_manager      = VLC_OBJECT( p_demux->p_vlc );
  190.     p_block->p_sys->hbmp    = hbmp;
  191.     return p_block;
  192. }
  193. block_t *screen_Capture( demux_t *p_demux )
  194. {
  195.     demux_sys_t *p_sys = p_demux->p_sys;
  196.     screen_data_t *p_data = p_sys->p_data;
  197.     if( !p_data->i_fragment )
  198.     {
  199.         if( !( p_data->p_block = CaptureBlockNew( p_demux ) ) )
  200.         {
  201.             msg_Warn( p_demux, "cannot get block" );
  202.             return 0;
  203.         }
  204.     }
  205.     if( !BitBlt( p_data->hdc_dst, 0, p_data->i_fragment *
  206.                  p_data->i_fragment_size,
  207.                  p_sys->fmt.video.i_width, p_data->i_fragment_size,
  208.                  p_data->hdc_src, 0, p_data->i_fragment *
  209.                  p_data->i_fragment_size,
  210.                  IS_WINNT ? SRCCOPY | CAPTUREBLT : SRCCOPY ) )
  211.     {
  212.         msg_Err( p_demux, "error during BitBlt()" );
  213.         return NULL;
  214.     }
  215.     p_data->i_fragment++;
  216.     if( !( p_data->i_fragment %
  217.            (p_sys->fmt.video.i_height/p_data->i_fragment_size) ) )
  218.     {
  219.         block_t *p_block = p_data->p_block;
  220.         p_data->i_fragment = 0;
  221.         p_data->p_block = 0;
  222.         return p_block;
  223.     }
  224.     return NULL;
  225. }