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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * vout_synchro.h: frame-dropping structures
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2003 VideoLAN
  5.  * $Id: vout_synchro.h 6961 2004-03-05 17:34:23Z sam $
  6.  *
  7.  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  8.  *          Jean-Marc Dressler <polux@via.ecp.fr>
  9.  *          St閜hane Borel <stef@via.ecp.fr>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  24.  *****************************************************************************/
  25. /*****************************************************************************
  26.  * vout_synchro_t : timers for the video synchro
  27.  *****************************************************************************/
  28. #define MAX_PIC_AVERAGE         8
  29. /* Read the discussion on top of vout_synchro.c for more information. */
  30. struct vout_synchro_t
  31. {
  32.     VLC_COMMON_MEMBERS
  33.     vout_thread_t * p_vout;
  34.     int             i_frame_rate;
  35.     int             i_current_rate;
  36.     /* date of the beginning of the decoding of the current picture */
  37.     mtime_t         decoding_start;
  38.     /* stream properties */
  39.     unsigned int    i_n_p, i_n_b;
  40.     /* decoding values */
  41.     mtime_t         p_tau[4];                  /* average decoding durations */
  42.     unsigned int    pi_meaningful[4];            /* number of durations read */
  43.     /* render_time filled by SynchroChoose() */
  44.     int i_render_time;
  45.     /* stream context */
  46.     int             i_nb_ref;                /* Number of reference pictures */
  47.     int             i_dec_nb_ref;      /* Number of reference pictures we'll *
  48.                                         * have if we decode the current pic  */
  49.     int             i_trash_nb_ref;    /* Number of reference pictures we'll *
  50.                                         * have if we trash the current pic   */
  51.     unsigned int    i_eta_p, i_eta_b;
  52.     mtime_t         backward_pts, current_pts;
  53.     int             i_current_period;   /* period to add to the next picture */
  54.     int             i_backward_period;  /* period to add after the next
  55.                                          * reference picture
  56.                                          * (backward_period * period / 2) */
  57.     /* statistics */
  58.     unsigned int    i_trashed_pic, i_not_chosen_pic, i_pic;
  59. };
  60. /* Pictures types */
  61. #define I_CODING_TYPE           1
  62. #define P_CODING_TYPE           2
  63. #define B_CODING_TYPE           3
  64. #define D_CODING_TYPE           4 /* MPEG-1 ONLY */
  65. /* other values are reserved */
  66. /* Structures */
  67. #define TOP_FIELD               1
  68. #define BOTTOM_FIELD            2
  69. #define FRAME_STRUCTURE         3
  70. /*****************************************************************************
  71.  * Prototypes
  72.  *****************************************************************************/
  73. #define vout_SynchroInit(a,b) __vout_SynchroInit(VLC_OBJECT(a),b)
  74. VLC_EXPORT( vout_synchro_t *, __vout_SynchroInit, ( vlc_object_t *, int ) );
  75. VLC_EXPORT( void, vout_SynchroRelease,        ( vout_synchro_t * ) );
  76. VLC_EXPORT( void, vout_SynchroReset,          ( vout_synchro_t * ) );
  77. VLC_EXPORT( vlc_bool_t, vout_SynchroChoose,   ( vout_synchro_t *, int, int ) );
  78. VLC_EXPORT( void, vout_SynchroTrash,          ( vout_synchro_t * ) );
  79. VLC_EXPORT( void, vout_SynchroDecode,         ( vout_synchro_t * ) );
  80. VLC_EXPORT( void, vout_SynchroEnd,            ( vout_synchro_t *, int, vlc_bool_t ) );
  81. VLC_EXPORT( mtime_t, vout_SynchroDate,        ( vout_synchro_t * ) );
  82. VLC_EXPORT( void, vout_SynchroNewPicture,     ( vout_synchro_t *, int, int, mtime_t, mtime_t, int ) );