00001 /***************************************************************************** 00002 * vcd.h : VCD input module header for vlc 00003 * using libcdio, libvcd and libvcdinfo 00004 ***************************************************************************** 00005 * Copyright (C) 2003, 2004 the VideoLAN team 00006 * $Id: caf31ad69f16e05508f8e158ce0f835192a3d737 $ 00007 * 00008 * Authors: Rocky Bernstein <rocky@panix.com> 00009 * 00010 * This program is free software; you can redistribute it and/or modify 00011 * it under the terms of the GNU General Public License as published by 00012 * the Free Software Foundation; either version 2 of the License, or 00013 * (at your option) any later version. 00014 * 00015 * This program is distributed in the hope that it will be useful, 00016 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00018 * GNU General Public License for more details. 00019 * 00020 * You should have received a copy of the GNU General Public License 00021 * along with this program; if not, write to the Free Software 00022 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 00023 *****************************************************************************/ 00024 00025 #include <libvcd/info.h> 00026 #include <vlc_interface.h> 00027 00028 #define VCD_MRL_PREFIX "vcdx://" 00029 00030 /***************************************************************************** 00031 * vcd_data_t: structure for communication between access and intf. 00032 *****************************************************************************/ 00033 typedef struct { 00034 #ifdef FINISHED 00035 vcdplay_ptr vmg; 00036 #endif 00037 intf_thread_t * p_intf; 00038 00039 #ifdef DEMUX_FINISHED 00040 int i_audio_nb; 00041 int i_spu_nb; 00042 #endif 00043 00044 int i_still_time; 00045 bool b_end_of_cell; 00046 00047 #ifdef FINISHED 00048 vcdplay_event_t event; 00049 vcdplay_ctrl_t control; 00050 vcdplay_highlight_t hli; 00051 #endif 00052 00053 } vcd_data_t; 00054 00055 int VCDSetArea ( access_t * ); 00056 int VCDSeek ( access_t *, uint64_t );
1.5.6