7027
|
1 /*****************************************************************************
|
|
2 * private.h: private DVD reading library data
|
|
3 *****************************************************************************
|
|
4 * Copyright (C) 1998-2001 VideoLAN
|
|
5 * $Id$
|
|
6 *
|
|
7 * Authors: Stéphane Borel <stef@via.ecp.fr>
|
|
8 * Samuel Hocevar <sam@zoy.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., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
|
|
23 *****************************************************************************/
|
|
24
|
|
25 /*****************************************************************************
|
|
26 * The libdvdcss structure
|
|
27 *****************************************************************************/
|
|
28 struct dvdcss_s
|
|
29 {
|
|
30 /* File descriptor */
|
|
31 char * psz_device;
|
|
32 int i_fd;
|
|
33 int i_seekpos;
|
|
34
|
|
35 /* Decryption stuff */
|
|
36 int i_method;
|
|
37 css_t css;
|
|
38 int b_ioctls;
|
|
39 int b_scrambled;
|
|
40 dvd_title_t *p_titles;
|
7032
|
41 char * psz_cache;
|
7027
|
42
|
|
43 /* Error management */
|
|
44 char * psz_error;
|
|
45 int b_errors;
|
|
46 int b_debug;
|
|
47
|
|
48 #ifdef WIN32
|
|
49 char * p_readv_buffer;
|
|
50 int i_readv_buf_size;
|
|
51 #endif
|
|
52
|
|
53 #ifndef WIN32
|
|
54 int i_raw_fd;
|
|
55 int i_read_fd;
|
|
56 #endif
|
|
57 };
|
|
58
|
|
59 /*****************************************************************************
|
|
60 * libdvdcss method: used like init flags
|
|
61 *****************************************************************************/
|
|
62 #define DVDCSS_METHOD_KEY 0
|
|
63 #define DVDCSS_METHOD_DISC 1
|
|
64 #define DVDCSS_METHOD_TITLE 2
|
|
65
|
|
66 /*****************************************************************************
|
|
67 * Functions used across the library
|
|
68 *****************************************************************************/
|
|
69 int _dvdcss_seek ( dvdcss_t, int );
|
|
70 int _dvdcss_read ( dvdcss_t, void *, int );
|
|
71
|
|
72 void _dvdcss_error ( dvdcss_t, char * );
|
|
73 void _dvdcss_debug ( dvdcss_t, char * );
|
|
74
|