Add multiple inclusion guards to all header files that lack them.
[mplayer/greg.git] / stream / stream_dvd.h
blob020c45f8b79b74e215737135be9999b6a9457759
1 #ifndef STREAM_DVD_H
2 #define STREAM_DVD_H
4 #ifdef USE_DVDREAD_INTERNAL
5 #include "dvdread/dvd_reader.h"
6 #include "dvdread/ifo_types.h"
7 #include "dvdread/ifo_read.h"
8 #include "dvdread/nav_read.h"
9 #else
10 #include <dvdread/dvd_reader.h>
11 #include <dvdread/ifo_types.h>
12 #include <dvdread/ifo_read.h>
13 #include <dvdread/nav_read.h>
14 #endif
16 typedef struct {
17 dvd_reader_t *dvd;
18 dvd_file_t *title;
19 ifo_handle_t *vmg_file;
20 tt_srpt_t *tt_srpt;
21 ifo_handle_t *vts_file;
22 vts_ptt_srpt_t *vts_ptt_srpt;
23 pgc_t *cur_pgc;
25 int cur_title;
26 int cur_cell;
27 int last_cell;
28 int cur_pack;
29 int cell_last_pack;
30 int cur_pgc_idx;
31 // Navi:
32 int packs_left;
33 dsi_t dsi_pack;
34 int angle_seek;
35 unsigned int *cell_times_table;
36 // audio datas
37 int nr_of_channels;
38 stream_language_t audio_streams[32];
39 // subtitles
40 int nr_of_subtitles;
41 stream_language_t subtitles[32];
42 } dvd_priv_t;
44 int dvd_number_of_subs(stream_t *stream);
45 int dvd_lang_from_aid(stream_t *stream, int id);
46 int dvd_lang_from_sid(stream_t *stream, int id);
47 int dvd_aid_from_lang(stream_t *stream, unsigned char* lang);
48 int dvd_sid_from_lang(stream_t *stream, unsigned char* lang);
49 int dvd_chapter_from_cell(dvd_priv_t *dvd,int title,int cell);
51 #endif /* STREAM_DVD_H */