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