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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * intf.h: send info to intf.
  3.  *****************************************************************************
  4.  * Copyright (C) 2001 the VideoLAN team
  5.  * $Id: fa37bbe30f80de68a2e54947c93c02839b3eed6d $
  6.  *
  7.  * Author: Stéphane Borel <stef@via.ecp.fr>
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. #include <vlc_common.h>
  24. #include <vlc_input.h>
  25. #include "vcdplayer.h"
  26. /*****************************************************************************
  27.  * intf_sys_t: description and status of interface
  28.  *****************************************************************************/
  29. struct intf_sys_t
  30. {
  31.   input_thread_t *p_input;
  32.   vcdplayer_t    *p_vcdplayer;
  33.   bool      b_still;           /* True if we are in a still frame */
  34.   bool      b_infinite_still;  /* True if still wait time is infinite */
  35.   mtime_t         m_still_time;      /* Time in microseconds remaining
  36.                                          to wait in still frame.
  37.                      */
  38. #ifdef FINISHED
  39.   vcdplay_ctrl_t      control;
  40. #else
  41.   int                 control;
  42. #endif
  43.   bool          b_click, b_move, b_key_pressed;
  44.   vlc_mutex_t lock;
  45. };
  46. int vcdIntfStillTime( struct intf_thread_t * p_intf, uint8_t wait_time);
  47. int vcdIntfResetStillTime( intf_thread_t *p_intf );