mirror of
https://github.com/mpv-player/mpv
synced 2024-12-18 04:45:33 +00:00
97e5f304ce
to avoid clashing with external libdvdread. (Sync with libdvdread r1122) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27498 b3059339-0415-0410-9bf9-f77b7e298cf2
15 lines
305 B
C
15 lines
305 B
C
#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 */
|