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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * screen.h: Screen capture module.
  3.  *****************************************************************************
  4.  * Copyright (C) 2004-2008 the VideoLAN team
  5.  * $Id: 28f1433dca9a2053e5d75290e129af855e36bbcd $
  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. #include <vlc_input.h>
  25. #include <vlc_access.h>
  26. #include <vlc_demux.h>
  27. #if !defined( HAVE_BEOS ) && !defined( HAVE_DARWIN )
  28. #   define SCREEN_SUBSCREEN
  29. #   define SCREEN_MOUSE
  30. #endif
  31. #ifdef SCREEN_MOUSE
  32. #   include <vlc_image.h>
  33. #endif
  34. typedef struct screen_data_t screen_data_t;
  35. struct demux_sys_t
  36. {
  37.     es_format_t fmt;
  38.     es_out_id_t *es;
  39.     float f_fps;
  40.     mtime_t i_next_date;
  41.     int i_incr;
  42. #ifdef SCREEN_SUBSCREEN
  43.     bool b_follow_mouse;
  44.     unsigned int i_screen_height;
  45.     unsigned int i_screen_width;
  46.     unsigned int i_top;
  47.     unsigned int i_left;
  48.     unsigned int i_height;
  49.     unsigned int i_width;
  50. #endif
  51. #ifdef SCREEN_MOUSE
  52.     picture_t *p_mouse;
  53.     filter_t *p_blend;
  54.     picture_t dst;
  55. #endif
  56.     screen_data_t *p_data;
  57. };
  58. int      screen_InitCapture ( demux_t * );
  59. int      screen_CloseCapture( demux_t * );
  60. block_t *screen_Capture( demux_t * );
  61. #ifdef SCREEN_SUBSCREEN
  62. void FollowMouse( demux_sys_t *, int, int );
  63. #endif
  64. #ifdef SCREEN_MOUSE
  65. void RenderCursor( demux_t *, int, int, uint8_t * );
  66. #endif