summaryrefslogtreecommitdiffstats
path: root/stream/stream.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-09-26 00:14:58 +0200
committerwm4 <wm4@nowhere>2014-09-26 00:30:21 +0200
commitd6c27855d70f3909ea083e03ea51b458f2a35411 (patch)
treea8f7bf7f3c61e153609ed610764ab4be86bf6fde /stream/stream.c
parentc3f77731380579323d3cf74bb739aace0a9d6717 (diff)
downloadmpv-d6c27855d70f3909ea083e03ea51b458f2a35411.tar.bz2
mpv-d6c27855d70f3909ea083e03ea51b458f2a35411.tar.xz
stream_bluray: allow opening BDMV directories directly
Similar as the previous commits. Most of the code is actually copied from the stream_dvdnav.c code, but I'd rather prefer to duplicate it, than to entangle them. The latter would probably result in terrible things in a few years.
Diffstat (limited to 'stream/stream.c')
-rw-r--r--stream/stream.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/stream/stream.c b/stream/stream.c
index 6a231713fb..f551fd89b5 100644
--- a/stream/stream.c
+++ b/stream/stream.c
@@ -68,6 +68,7 @@ extern const stream_info_t stream_info_ifo;
extern const stream_info_t stream_info_ifo_dvdnav;
extern const stream_info_t stream_info_dvd;
extern const stream_info_t stream_info_dvdnav;
+extern const stream_info_t stream_info_bdmv_dir;
extern const stream_info_t stream_info_bluray;
extern const stream_info_t stream_info_bdnav;
extern const stream_info_t stream_info_rar_filter;
@@ -102,6 +103,7 @@ static const stream_info_t *const stream_list[] = {
&stream_info_dvdnav,
#endif
#if HAVE_LIBBLURAY
+ &stream_info_bdmv_dir,
&stream_info_bluray,
&stream_info_bdnav,
#endif