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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * vcd.h : VCD input module header for vlc
  3.  *          using libcdio, libvcd and libvcdinfo
  4.  *****************************************************************************
  5.  * Copyright (C) 2003 VideoLAN
  6.  * $Id: vcd.h 8313 2004-07-29 15:18:04Z hartman $
  7.  *
  8.  * Authors: Rocky Bernstein <rocky@panix.com> 
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #include <libvcd/info.h>
  25. /*****************************************************************************
  26.  * vcd_data_t: structure for communication between access and intf.
  27.  *****************************************************************************/
  28. typedef struct
  29. {
  30. #if FINISHED
  31.     vcdplay_ptr             vmg;
  32. #endif
  33.     intf_thread_t *         p_intf;
  34. #if DEMUX_FINISHED
  35.     int                     i_audio_nb;
  36.     int                     i_spu_nb;
  37. #endif
  38.     int                     i_still_time;
  39.     vlc_bool_t                    b_end_of_cell;
  40. #if FINISHED
  41.     vcdplay_event_t         event;
  42.     vcdplay_ctrl_t          control;   
  43.     vcdplay_highlight_t     hli;
  44. #endif
  45. } vcd_data_t;
  46. int  VCDSetArea      ( input_thread_t *, input_area_t * );
  47. void VCDSeek         ( input_thread_t *, off_t );
  48. int  VCDPlay         ( input_thread_t *, vcdinfo_itemid_t );