blob: f5e9044333442c63f39ebef006ae140c2bc93a5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
/* dvd.h
Copyright (c) 2003-2016 HandBrake Team
This file is part of the HandBrake source code
Homepage: <http://handbrake.fr/>.
It may be used under the terms of the GNU General Public License v2.
For full terms see the file COPYING file or visit http://www.gnu.org/licenses/gpl-2.0.html
*/
#ifndef HB_DVD_H
#define HB_DVD_H
#include "dvdnav/dvdnav.h"
#include "dvdread/ifo_read.h"
#include "dvdread/nav_read.h"
struct hb_dvdread_s
{
char * path;
dvd_reader_t * reader;
ifo_handle_t * vmg;
int vts;
int ttn;
ifo_handle_t * ifo;
dvd_file_t * file;
pgc_t * pgc;
int cell_start;
int cell_end;
int title_start;
int title_end;
int title_block_count;
int cell_cur;
int cell_next;
int cell_overlap;
int block;
int pack_len;
int next_vobu;
int in_cell;
int in_sync;
uint16_t cur_vob_id;
uint8_t cur_cell_id;
hb_handle_t * h;
int chapter;
};
struct hb_dvdnav_s
{
char * path;
dvdnav_t * dvdnav;
dvd_reader_t * reader;
ifo_handle_t * vmg;
int title;
int title_block_count;
int chapter;
int cell;
hb_list_t * list_chapter;
int stopped;
hb_handle_t * h;
};
typedef struct hb_dvdnav_s hb_dvdnav_t;
typedef struct hb_dvdread_s hb_dvdread_t;
union hb_dvd_s
{
hb_dvdread_t dvdread;
hb_dvdnav_t dvdnav;
};
struct hb_dvd_func_s
{
hb_dvd_t * (* init) ( hb_handle_t *, char * );
void (* close) ( hb_dvd_t ** );
char * (* name) ( char * );
int (* title_count) ( hb_dvd_t * );
hb_title_t * (* title_scan) ( hb_dvd_t *, int, uint64_t );
int (* start) ( hb_dvd_t *, hb_title_t *, int );
void (* stop) ( hb_dvd_t * );
int (* seek) ( hb_dvd_t *, float );
hb_buffer_t * (* read) ( hb_dvd_t * );
int (* chapter) ( hb_dvd_t * );
int (* angle_count) ( hb_dvd_t * );
void (* set_angle) ( hb_dvd_t *, int );
int (* main_feature)( hb_dvd_t *, hb_list_t * );
};
typedef struct hb_dvd_func_s hb_dvd_func_t;
hb_dvd_func_t * hb_dvdnav_methods( void );
hb_dvd_func_t * hb_dvdread_methods( void );
#endif // HB_DVD_H
|