mirror of
https://github.com/mpv-player/mpv
synced 2024-12-20 05:42:19 +00:00
4b141479da
Replace all USE_ prefixes by CONFIG_ prefixes to indicate options which are configurable. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27373 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 <dvdread/ifo_types.h>
|
|
#else
|
|
#include <libdvdread/ifo_types.h>
|
|
#endif
|
|
|
|
int mp_dvdtimetomsec(dvd_time_t *dt);
|
|
|
|
#endif /* MPLAYER_STREAM_DVD_COMMON_H */
|