summaryrefslogtreecommitdiffstats
path: root/stream/stream.c
diff options
context:
space:
mode:
authorben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-07-05 17:04:46 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:14:20 +0200
commit6704008a4688fd9bd2cf277019694ed948ecdc5e (patch)
tree026e7b57e5961ad5f99e3640162d91b0687cd7b3 /stream/stream.c
parent95751ea3e4da4eb9ca0a001d8238614898283ced (diff)
downloadmpv-6704008a4688fd9bd2cf277019694ed948ecdc5e.tar.bz2
mpv-6704008a4688fd9bd2cf277019694ed948ecdc5e.tar.xz
stream_bluray: add unencrypted Blu-ray playback
Support for unencrypted Blu-ray playback through libbluray. Use it through: mplayer br:////path/to/disc git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31631 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/stream.c')
-rw-r--r--stream/stream.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/stream/stream.c b/stream/stream.c
index 01245b757a..919b4ee383 100644
--- a/stream/stream.c
+++ b/stream/stream.c
@@ -80,6 +80,7 @@ extern const stream_info_t stream_info_ffmpeg;
extern const stream_info_t stream_info_file;
extern const stream_info_t stream_info_ifo;
extern const stream_info_t stream_info_dvd;
+extern const stream_info_t stream_info_bluray;
static const stream_info_t* const auto_open_streams[] = {
#ifdef CONFIG_VCD
@@ -131,6 +132,9 @@ static const stream_info_t* const auto_open_streams[] = {
#ifdef CONFIG_DVDNAV
&stream_info_dvdnav,
#endif
+#ifdef CONFIG_LIBBLURAY
+ &stream_info_bluray,
+#endif
#ifdef CONFIG_LIBAVFORMAT
&stream_info_ffmpeg,
#endif