summaryrefslogtreecommitdiffstats
path: root/libmpdemux/stream.c
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-12-14 21:52:41 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-12-14 21:52:41 +0000
commit3d91be0230447a60d737f17e623b4c17527af37a (patch)
tree4bf6ad03af4c3a7488ff05bac1de436188faac93 /libmpdemux/stream.c
parentdbb88f947ed5a41105ded0af78132c4fe7a73ea9 (diff)
downloadmpv-3d91be0230447a60d737f17e623b4c17527af37a.tar.bz2
mpv-3d91be0230447a60d737f17e623b4c17527af37a.tar.xz
fix compilation when dvdkit and dvdread are not available
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17192 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/stream.c')
-rw-r--r--libmpdemux/stream.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libmpdemux/stream.c b/libmpdemux/stream.c
index 84babf0ed5..4eebbbc485 100644
--- a/libmpdemux/stream.c
+++ b/libmpdemux/stream.c
@@ -75,7 +75,9 @@ extern stream_info_t stream_info_rtsp_sip;
extern stream_info_t stream_info_cue;
extern stream_info_t stream_info_null;
extern stream_info_t stream_info_file;
+#ifdef HAVE_DVD
extern stream_info_t stream_info_dvd;
+#endif
stream_info_t* auto_open_streams[] = {
#ifdef HAVE_VCD
@@ -110,7 +112,9 @@ stream_info_t* auto_open_streams[] = {
&stream_info_smb,
#endif
&stream_info_cue,
+#ifdef HAVE_DVD
&stream_info_dvd,
+#endif
#ifdef USE_DVDNAV
&stream_info_dvdnav;
#endif