Mercurial > mplayer.hg
annotate stream/stream_dvd_common.h @ 26919:63f00298b35d
changed the code that checks the presence of the external dvdread
to include the headers from libdvdread/ (as in current svn)
author | nicodvb |
---|---|
date | Sun, 01 Jun 2008 07:31:03 +0000 |
parents | bae68d1afda2 |
children | c333185b1c3e |
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 |
26184
7ee4ae1648e6
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
26029
diff
changeset
|
4 #include <inttypes.h> |
26906
bae68d1afda2
adapted to the dvdread->libdvdread transition in dvdnav's repository
nicodvb
parents:
26184
diff
changeset
|
5 #ifdef USE_DVDREAD_INTERNAL |
26184
7ee4ae1648e6
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
26029
diff
changeset
|
6 #include <dvdread/ifo_types.h> |
26906
bae68d1afda2
adapted to the dvdread->libdvdread transition in dvdnav's repository
nicodvb
parents:
26184
diff
changeset
|
7 #else |
bae68d1afda2
adapted to the dvdread->libdvdread transition in dvdnav's repository
nicodvb
parents:
26184
diff
changeset
|
8 #include <libdvdread/ifo_types.h> |
bae68d1afda2
adapted to the dvdread->libdvdread transition in dvdnav's repository
nicodvb
parents:
26184
diff
changeset
|
9 #endif |
26184
7ee4ae1648e6
Add missing header #includes to fix 'make checkheaders'.
diego
parents:
26029
diff
changeset
|
10 |
23993 | 11 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
|
12 |
26029 | 13 #endif /* MPLAYER_STREAM_DVD_COMMON_H */ |