]> git.sesse.net Git - vlc/blobdiff - plugins/dvd/input_dvd.h
* Ported Glide and MGA plugins to the new module API. MGA never worked,
[vlc] / plugins / dvd / input_dvd.h
index bf4b42af2f98504b861696c0bb0165518a74cc0d..669e1d6abcd15fbce90cf3ebee237eebc793add4 100644 (file)
@@ -40,7 +40,7 @@ typedef struct thread_dvd_data_s
     int                     i_end_cell;
 
     /* Scrambling Information */
-#if defined( HAVE_SYS_DVDIO_H ) || defined( LINUX_DVD )
+#if defined( HAVE_SYS_DVDIO_H ) || defined( LINUX_DVD ) || defined( SYS_BEOS )
     struct css_s            css;
 #endif
 
@@ -53,16 +53,17 @@ typedef struct thread_dvd_data_s
  * Prototypes in dvd_ifo.c
  *****************************************************************************/
 struct ifo_s    IfoInit( int );
+int             IfoReadVTS( struct ifo_s * );
 void            IfoRead( struct ifo_s * );
 void            IfoEnd( ifo_t * );
 
 /*****************************************************************************
  * Prototypes in dvd_css.c
  *****************************************************************************/
-#if defined( HAVE_SYS_DVDIO_H ) || defined( LINUX_DVD )
+#if defined( HAVE_SYS_DVDIO_H ) || defined( LINUX_DVD ) || defined( SYS_BEOS )
 int             CSSTest     ( int );
 struct css_s    CSSInit     ( int );
-int             CSSGetKeys  ( struct css_s * );
+int             CSSGetKey   ( struct css_s * );
 int             CSSDescrambleSector( u8 * , u8 * );
 
 #endif