summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
Diffstat (limited to 'stream')
-rw-r--r--stream/stream_cdda.c8
-rw-r--r--stream/stream_dvdnav.c7
2 files changed, 12 insertions, 3 deletions
diff --git a/stream/stream_cdda.c b/stream/stream_cdda.c
index b00bb22539..4c959736d7 100644
--- a/stream/stream_cdda.c
+++ b/stream/stream_cdda.c
@@ -292,12 +292,16 @@ static int open_cdda(stream_t *st)
&global_device);
talloc_steal(st, global_device);
+#if defined(_WIN32)
+ p->device = "D:";
+#else
+ p->device = "/dev/cdrom";
+#endif
+
if (st->path[0]) {
p->device = st->path;
} else if (global_device && global_device[0]) {
p->device = global_device;
- } else {
- p->device = DEFAULT_CDROM_DEVICE;
}
#if defined(__NetBSD__)
diff --git a/stream/stream_dvdnav.c b/stream/stream_dvdnav.c
index d858c51aca..56aaaa90af 100644
--- a/stream/stream_dvdnav.c
+++ b/stream/stream_dvdnav.c
@@ -562,10 +562,15 @@ static int open_s_internal(stream_t *stream)
{
struct priv *priv, *p;
priv = p = stream->priv;
- char *filename;
p->opts = mp_get_config_group(stream, stream->global, &dvd_conf);
+ char *filename = "/dev/dvd";
+
+#if defined(_WIN32)
+ filename = "D:";
+#endif
+
if (p->device && p->device[0])
filename = p->device;
else if (p->opts->device && p->opts->device[0])