diff stream/stream.c @ 31836:dcd515ac5f6c

Add support for bd:// streams as a test for a part of the AACS algorithm. Patch by cRTrn13 <crtrn13-at-gmail.com> with some minor fixes by me.
author reimar
date Tue, 03 Aug 2010 16:26:50 +0000
parents db0b49579eeb
children 3103448dcf28
line wrap: on
line diff
--- a/stream/stream.c	Tue Aug 03 16:01:40 2010 +0000
+++ b/stream/stream.c	Tue Aug 03 16:26:50 2010 +0000
@@ -52,6 +52,7 @@
 
 static int (*stream_check_interrupt_cb)(int time) = NULL;
 
+extern const stream_info_t stream_info_bd;
 extern const stream_info_t stream_info_vcd;
 extern const stream_info_t stream_info_cdda;
 extern const stream_info_t stream_info_netstream;
@@ -83,6 +84,7 @@
 extern const stream_info_t stream_info_bluray;
 
 static const stream_info_t* const auto_open_streams[] = {
+  &stream_info_bd,
 #ifdef CONFIG_VCD
   &stream_info_vcd,
 #endif