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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vout_control.h : Vout control function definitions
  3.  *****************************************************************************
  4.  * Copyright (C) 2008 the VideoLAN team
  5.  * Copyright (C) 2008 Laurent Aimar
  6.  * $Id: d44b06d6331a8bb7835e22a001aa3c5d3a52dc13 $
  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_CONTROL_H
  28. #define _VOUT_CONTROL_H 1
  29. /* DO NOT use vout_CountPictureAvailable unless your are in src/input/decoder.c (no exception) */
  30. int vout_CountPictureAvailable( vout_thread_t * );
  31. /**
  32.  * This function will (un)pause the display of pictures.
  33.  * It is thread safe
  34.  */
  35. void vout_ChangePause( vout_thread_t *, bool b_paused, mtime_t i_date );
  36. /**
  37.  * This function will apply an offset on subtitle subpicture.
  38.  */
  39. void spu_OffsetSubtitleDate( spu_t *p_spu, mtime_t i_duration );
  40. /**
  41.  * This function will return and reset internal statistics.
  42.  */
  43. void vout_GetResetStatistic( vout_thread_t *p_vout, int *pi_displayed, int *pi_lost );
  44. /**
  45.  * This function will ensure that all ready/displayed pciture have at most
  46.  * the provided dat
  47.  */
  48. void vout_Flush( vout_thread_t *p_vout, mtime_t i_date );
  49. /**
  50.  * This function will try to detect if pictures are being leaked. If so it
  51.  * will release them.
  52.  *
  53.  * XXX This function is there to workaround bugs in decoder
  54.  */
  55. void vout_FixLeaks( vout_thread_t *p_vout, bool b_forced );
  56. /**
  57.  * This functions will drop a picture retreived by vout_CreatePicture.
  58.  */
  59. void vout_DropPicture( vout_thread_t *p_vout, picture_t * );
  60. /**
  61.  * This function will force to display the next picture while paused
  62.  */
  63. void vout_NextPicture( vout_thread_t *p_vout, mtime_t *pi_duration );
  64. /**
  65.  * This function will ask the display of the input title
  66.  */
  67. void vout_DisplayTitle( vout_thread_t *p_vout, const char *psz_title );
  68. #endif