Mercurial > mplayer.hg
annotate stream/stream_dvd_common.h @ 27144:76ddca5027c3
r25179: Add missing forced linebreak, slight wording improvement.
r25189: Add an example for play DTS-CD with passsthrough.
r25194: -identify shows chapters times when playing dvd streams
r25314: cleanup and conformation of values description for -ass-hinting
r25315: minor spelling/grammar fixes
r25343: Fix all current known multi-channel wrong order problems [...]
r25379: Fix libass to support -nofontconfig.
author | kraymer |
---|---|
date | Mon, 30 Jun 2008 19:35:27 +0000 |
parents | c333185b1c3e |
children | e7c989f7a7c9 |
rev | line source |
---|---|
26029 | 1 #ifndef MPLAYER_STREAM_DVD_COMMON_H |
2 #define MPLAYER_STREAM_DVD_COMMON_H | |
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
23993
diff
changeset
|
3 |
27043 | 4 #include "config.h" |
26184
7ee4ae1648e6
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
26029
diff
changeset
|
5 #include <inttypes.h> |
26906
bae68d1afda2
adapted to the dvdread->libdvdread transition in dvdnav's repository
nicodvb
parents:
26184
diff
changeset
|
6 #ifdef USE_DVDREAD_INTERNAL |
26184
7ee4ae1648e6
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
26029
diff
changeset
|
7 #include <dvdread/ifo_types.h> |
26906
bae68d1afda2
adapted to the dvdread->libdvdread transition in dvdnav's repository
nicodvb
parents:
26184
diff
changeset
|
8 #else |
bae68d1afda2
adapted to the dvdread->libdvdread transition in dvdnav's repository
nicodvb
parents:
26184
diff
changeset
|
9 #include <libdvdread/ifo_types.h> |
bae68d1afda2
adapted to the dvdread->libdvdread transition in dvdnav's repository
nicodvb
parents:
26184
diff
changeset
|
10 #endif |
26184
7ee4ae1648e6
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
26029
diff
changeset
|
11 |
23993 | 12 int mp_dvdtimetomsec(dvd_time_t *dt); |
25553
6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
diego
parents:
23993
diff
changeset
|
13 |
26029 | 14 #endif /* MPLAYER_STREAM_DVD_COMMON_H */ |