summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-04-03 12:00:50 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-04-03 12:00:50 +0000
commitd9938992b23ae81e8c9ef37b2eae95805055f84c (patch)
tree5b42913e5f49b413a3eeda2bca7929f8c868ad25 /libmpdemux
parent9e88c30a9deb41c56fc6bac81c5ea8427f6a7b52 (diff)
downloadmpv-d9938992b23ae81e8c9ef37b2eae95805055f84c.tar.bz2
mpv-d9938992b23ae81e8c9ef37b2eae95805055f84c.tar.xz
10l
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9811 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/stream.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libmpdemux/stream.c b/libmpdemux/stream.c
index 8b669353bc..3afa3bad52 100644
--- a/libmpdemux/stream.c
+++ b/libmpdemux/stream.c
@@ -59,11 +59,15 @@ void close_cdda(stream_t* s);
#include "libsmbclient.h"
#endif
+#ifdef HAVE_CDDA
extern stream_info_t stream_info_cdda;
+#endif
extern stream_info_t stream_info_file;
stream_info_t* auto_open_streams[] = {
+#ifdef HAVE_CDDA
&stream_info_cdda,
+#endif
&stream_info_file,
NULL
};