summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
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
};