blob: 443daa45f96405fa466b7471093abd4eada9d6dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef MPLAYER_STREAM_DVD_COMMON_H
#define MPLAYER_STREAM_DVD_COMMON_H
#include <inttypes.h>
#ifdef USE_DVDREAD_INTERNAL
#include <dvdread/ifo_types.h>
#else
#include <libdvdread/ifo_types.h>
#endif
int mp_dvdtimetomsec(dvd_time_t *dt);
#endif /* MPLAYER_STREAM_DVD_COMMON_H */
|