]> git.sesse.net Git - vlc/blob - src/input/input_dvd.h
c0b492093f59a727b009f9aa8299ec002cca147e
[vlc] / src / input / input_dvd.h
1 /*****************************************************************************
2  * input_dvd.h: thread structure of the DVD plugin
3  *****************************************************************************
4  * Copyright (C) 1999-2001 VideoLAN
5  *
6  * Author: Stéphane Borel <stef@via.ecp.fr>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
21  *****************************************************************************/
22
23 /*****************************************************************************
24  * thread_dvd_data_t: extension of input_thread_t for DVD specificity
25  *****************************************************************************/
26 typedef struct thread_dvd_data_s
27 {
28     int                     i_fd;
29     boolean_t               b_encrypted;
30 #if defined( HAVE_SYS_DVDIO_H ) || defined( LINUX_DVD )
31     /* Scrambling Information */
32     struct css_s            css;
33 #endif
34     /* Structure that contains all information of the DVD */
35     struct ifo_s            ifo;
36 } thread_dvd_data_t;
37
38