diff stream/stream.c @ 31565:9a590e7aac57

Support for unencrypted Blu-ray playback through libbluray. Use it through: mplayer br:////path/to/disc
author ben
date Mon, 05 Jul 2010 17:04:46 +0000
parents 4c959d99d30a
children a4ceb52caa30
line wrap: on
line diff
--- a/stream/stream.c	Sun Jul 04 07:13:18 2010 +0000
+++ b/stream/stream.c	Mon Jul 05 17:04:46 2010 +0000
@@ -79,6 +79,7 @@
 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
@@ -130,6 +131,9 @@
 #ifdef CONFIG_DVDNAV
   &stream_info_dvdnav,
 #endif
+#ifdef CONFIG_LIBBLURAY
+  &stream_info_bluray,
+#endif
 #ifdef CONFIG_LIBAVFORMAT
   &stream_info_ffmpeg,
 #endif