Mercurial > mplayer.hg
annotate stream/stream_dvd.h @ 25866:178006e9ea75
Replace with the output of the updated alaw-gen generator program.
This adds multiple inclusion guards and reformats the tables.
author | diego |
---|---|
date | Sun, 27 Jan 2008 18:49:24 +0000 |
parents | 6ac1ece1f9fe |
children | 4129c8cfa742 |
rev | line source |
---|---|
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
25112
diff
changeset
|
1 #ifndef STREAM_DVD_H |
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
25112
diff
changeset
|
2 #define STREAM_DVD_H |
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
25112
diff
changeset
|
3 |
20635
9ed557ae1383
Streamline and simplify internal vs external libdvdread handling.
diego
parents:
20615
diff
changeset
|
4 #ifdef USE_DVDREAD_INTERNAL |
20981
22cb9d5f1e21
Rename libdvdread to dvdread. We really only include only the dvdread
diego
parents:
20746
diff
changeset
|
5 #include "dvdread/dvd_reader.h" |
22cb9d5f1e21
Rename libdvdread to dvdread. We really only include only the dvdread
diego
parents:
20746
diff
changeset
|
6 #include "dvdread/ifo_types.h" |
22cb9d5f1e21
Rename libdvdread to dvdread. We really only include only the dvdread
diego
parents:
20746
diff
changeset
|
7 #include "dvdread/ifo_read.h" |
22cb9d5f1e21
Rename libdvdread to dvdread. We really only include only the dvdread
diego
parents:
20746
diff
changeset
|
8 #include "dvdread/nav_read.h" |
18681 | 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 | |
15 | |
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; | |
24 // | |
25 int cur_title; | |
26 int cur_cell; | |
27 int last_cell; | |
28 int cur_pack; | |
29 int cell_last_pack; | |
20746
a40246d0c941
implemented STREAM_CTRL_GET_CURRENT_TIME and STREAM_CTRL_SEEK_TO_TIME (precise seeking)
nicodvb
parents:
20635
diff
changeset
|
30 int cur_pgc_idx; |
18681 | 31 // Navi: |
32 int packs_left; | |
33 dsi_t dsi_pack; | |
34 int angle_seek; | |
20746
a40246d0c941
implemented STREAM_CTRL_GET_CURRENT_TIME and STREAM_CTRL_SEEK_TO_TIME (precise seeking)
nicodvb
parents:
20635
diff
changeset
|
35 unsigned int *cell_times_table; |
18681 | 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; | |
43 | |
44 int dvd_number_of_subs(stream_t *stream); | |
20156 | 45 int dvd_lang_from_aid(stream_t *stream, int id); |
18681 | 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); | |
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
25112
diff
changeset
|
50 |
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
25112
diff
changeset
|
51 #endif /* STREAM_DVD_H */ |