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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vout_internal.h : Internal vout definitions
  3.  *****************************************************************************
  4.  * Copyright (C) 2008 the VideoLAN team
  5.  * Copyright (C) 2008 Laurent Aimar
  6.  * $Id: 773008ee9e98b903e407a5ad7c6cfda91885175f $
  7.  *
  8.  * Authors: Laurent Aimar < fenrir _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. #if defined(__PLUGIN__) || defined(__BUILTIN__) || !defined(__LIBVLC__)
  25. # error This header file can only be included from LibVLC.
  26. #endif
  27. #ifndef _VOUT_INTERNAL_H
  28. #define _VOUT_INTERNAL_H 1
  29. #include "vout_control.h"
  30. /* Number of pictures required to computes the FPS rate */
  31. #define VOUT_FPS_SAMPLES                20
  32. /* */
  33. struct vout_thread_sys_t
  34. {
  35.     /* Thread & synchronization */
  36.     vlc_thread_t    thread;
  37.     vlc_cond_t      change_wait;
  38.     bool            b_ready;
  39.     bool            b_done;
  40.     /* */
  41.     bool            b_picture_displayed;
  42.     bool            b_picture_empty;
  43.     mtime_t         i_picture_displayed_date;
  44.     picture_t       *p_picture_displayed;
  45.     int             i_picture_qtype;
  46.     vlc_cond_t      picture_wait;
  47.     /* */
  48.     vlc_mutex_t     vfilter_lock;         /**< video filter2 change lock */
  49.     /* */
  50.     uint32_t        render_time;           /**< last picture render time */
  51.     unsigned int    i_par_num;           /**< monitor pixel aspect-ratio */
  52.     unsigned int    i_par_den;           /**< monitor pixel aspect-ratio */
  53.     /* */
  54.     bool            b_direct;            /**< rendered are like direct ? */
  55.     filter_t        *p_chroma;
  56.     /**
  57.      * These numbers are not supposed to be accurate, but are a
  58.      * good indication of the thread status */
  59.     count_t         c_fps_samples;                         /**< picture counts */
  60.     mtime_t         p_fps_sample[VOUT_FPS_SAMPLES];     /**< FPS samples dates */
  61.     /* Statistics */
  62.     int             i_picture_lost;
  63.     int             i_picture_displayed;
  64.     /* Pause */
  65.     bool            b_paused;
  66.     mtime_t         i_pause_date;
  67.     /* Filter chain */
  68.     bool           b_first_vout;  /* True if it is the first vout of the filter chain */
  69.     char           *psz_filter_chain;
  70.     bool            b_filter_change;
  71.     /* Video filter2 chain */
  72.     filter_chain_t *p_vf2_chain;
  73.     char           *psz_vf2;
  74.     /* Snapshot interface */
  75.     struct
  76.     {
  77.         bool        b_available;
  78.         int         i_request;
  79.         picture_t   *p_picture;
  80.         vlc_mutex_t lock;
  81.         vlc_cond_t  wait;
  82.     } snapshot;
  83.     /* Show media title on videoutput */
  84.     bool            b_title_show;
  85.     mtime_t         i_title_timeout;
  86.     int             i_title_position;
  87.     char            *psz_title;
  88. };
  89. /* DO NOT use vout_RenderPicture unless you are in src/video_ouput */
  90. picture_t *vout_RenderPicture( vout_thread_t *, picture_t *,
  91.                                subpicture_t *,
  92.                                mtime_t render_date );
  93. /* DO NOT use vout_UsePictureLocked unless you are in src/video_ouput
  94.  *
  95.  * This function supposes that you call it with picture_lock taken.
  96.  */
  97. void vout_UsePictureLocked( vout_thread_t *p_vout, picture_t *p_pic  );
  98. #endif