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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * screen.c: Screen capture module.
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 VideoLAN
  5.  * $Id: screen.c 8611 2004-09-01 11:02:15Z zorglub $
  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. /*****************************************************************************
  31.  * Module descriptor
  32.  *****************************************************************************/
  33. #define CACHING_TEXT N_("Caching value in ms")
  34. #define CACHING_LONGTEXT N_( 
  35.     "Allows you to modify the default caching value for screen capture " 
  36.     "streams. This value should be set in millisecond units." )
  37. #define FPS_TEXT N_("Frame rate")
  38. #define FPS_LONGTEXT N_( 
  39.     "Allows you to set the desired frame rate for the capture." )
  40. #ifdef WIN32
  41. #define FRAGS_TEXT N_("Capture fragment size")
  42. #define FRAGS_LONGTEXT N_( 
  43.     "Allows you optimize the capture by fragmenting the screen in chunks " 
  44.     "of predefined height (16 might be a good value, and 0 means disabled)." )
  45. #endif
  46. static int  Open ( vlc_object_t * );
  47. static void Close( vlc_object_t * );
  48. #ifdef WIN32
  49. #   define SCREEN_FPS 1
  50. #else
  51. #   define SCREEN_FPS 5
  52. #endif
  53. vlc_module_begin();
  54.     set_description( _("Screen Input") );
  55.     add_integer( "screen-caching", DEFAULT_PTS_DELAY / 1000, NULL,
  56.         CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
  57.     add_float( "screen-fps", SCREEN_FPS, 0, FPS_TEXT, FPS_LONGTEXT, VLC_TRUE );
  58. #ifdef WIN32
  59.     add_integer( "screen-fragment-size", 0, NULL, FRAGS_TEXT,
  60.         FRAGS_LONGTEXT, VLC_TRUE );
  61. #endif
  62.     set_capability( "access_demux", 0 );
  63.     add_shortcut( "screen" );
  64.     set_callbacks( Open, Close );
  65. vlc_module_end();
  66. /*****************************************************************************
  67.  * Local prototypes
  68.  *****************************************************************************/
  69. static int Control( demux_t *, int, va_list );
  70. static int Demux  ( demux_t * );
  71. /*****************************************************************************
  72.  * DemuxOpen:
  73.  *****************************************************************************/
  74. static int Open( vlc_object_t *p_this )
  75. {
  76.     demux_t     *p_demux = (demux_t*)p_this;
  77.     demux_sys_t *p_sys;
  78.     vlc_value_t val;
  79.     /* Fill p_demux field */
  80.     p_demux->pf_demux = Demux;
  81.     p_demux->pf_control = Control;
  82.     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
  83.     memset( p_sys, 0, sizeof( demux_sys_t ) );
  84.     /* Update default_pts to a suitable value for screen access */
  85.     var_Create( p_demux, "screen-caching", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
  86.     var_Create( p_demux, "screen-fps", VLC_VAR_FLOAT|VLC_VAR_DOINHERIT );
  87.     var_Get( p_demux, "screen-fps", &val );
  88.     p_sys->f_fps = val.f_float;
  89.     p_sys->i_incr = 1000000 / val.f_float;
  90.     p_sys->i_next_date = 0;
  91.     if( screen_InitCapture( p_demux ) != VLC_SUCCESS )
  92.     {
  93.         free( p_sys );
  94.         return VLC_EGENERIC;
  95.     }
  96.     msg_Dbg( p_demux, "screen width: %i, height: %i, depth: %i",
  97.              p_sys->fmt.video.i_width, p_sys->fmt.video.i_height,
  98.              p_sys->fmt.video.i_bits_per_pixel );
  99.     p_sys->es = es_out_Add( p_demux->out, &p_sys->fmt );
  100.     return VLC_SUCCESS;
  101. }
  102. /*****************************************************************************
  103.  * Close:
  104.  *****************************************************************************/
  105. static void Close( vlc_object_t *p_this )
  106. {
  107.     demux_t     *p_demux = (demux_t*)p_this;
  108.     demux_sys_t *p_sys = p_demux->p_sys;
  109.     screen_CloseCapture( p_demux );
  110.     free( p_sys );
  111. }
  112. /*****************************************************************************
  113.  * Demux:
  114.  *****************************************************************************/
  115. static int Demux( demux_t *p_demux )
  116. {
  117.     demux_sys_t *p_sys = p_demux->p_sys;
  118.     block_t *p_block;
  119.     if( !p_sys->i_next_date ) p_sys->i_next_date = mdate();
  120.     /* Frame skipping if necessary */
  121.     while( mdate() >= p_sys->i_next_date + p_sys->i_incr )
  122.         p_sys->i_next_date += p_sys->i_incr;
  123.     mwait( p_sys->i_next_date );
  124.     p_block = screen_Capture( p_demux );
  125.     if( !p_block )
  126.     {
  127.         p_sys->i_next_date += p_sys->i_incr;
  128.         return 1;
  129.     }
  130.     p_block->i_dts = p_block->i_pts = p_sys->i_next_date;
  131.     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
  132.     es_out_Send( p_demux->out, p_sys->es, p_block );
  133.     p_sys->i_next_date += p_sys->i_incr;
  134.     return 1;
  135. }
  136. /*****************************************************************************
  137.  * Control:
  138.  *****************************************************************************/
  139. static int Control( demux_t *p_demux, int i_query, va_list args )
  140. {
  141.     vlc_bool_t *pb;
  142.     int64_t *pi64;
  143.     switch( i_query )
  144.     {
  145.         /* Special for access_demux */
  146.         case DEMUX_CAN_PAUSE:
  147.         case DEMUX_CAN_CONTROL_PACE:
  148.             /* TODO */
  149.             pb = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
  150.             *pb = VLC_FALSE;
  151.             return VLC_SUCCESS;
  152.         case DEMUX_GET_PTS_DELAY:
  153.             pi64 = (int64_t*)va_arg( args, int64_t * );
  154.             *pi64 = (int64_t)var_GetInteger( p_demux, "screen-caching" ) *1000;
  155.             return VLC_SUCCESS;
  156.         /* TODO implement others */
  157.         default:
  158.             return VLC_EGENERIC;
  159.     }
  160. }