]> git.sesse.net Git - vlc/blobdiff - plugins/dvd/input_dvd.h
* XVideo window now has a black background, thanks to Shane Harper.
[vlc] / plugins / dvd / input_dvd.h
index 5c7348f9418f13bbf85cf3caa374e7d47bbda236..89545ce01665297b4d3d008812aba232bfd8b67e 100644 (file)
@@ -2,6 +2,7 @@
  * input_dvd.h: thread structure of the DVD plugin
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
+ * $Id: input_dvd.h,v 1.16 2001/04/08 16:57:47 sam Exp $
  *
  * Author: Stéphane Borel <stef@via.ecp.fr>
  *
@@ -40,34 +41,41 @@ typedef struct thread_dvd_data_s
     /* Navigation information */
     int                     i_title;
     int                     i_vts_title;
+    int                     i_program_chain;
+
     int                     i_chapter_nb;
+    int                     i_chapter;
+
+    int                     i_cell;         /* cell index in adress map */
+    int                     i_prg_cell;     /* cell index in program map */
+
+    int                     i_sector;
+    int                     i_end_sector;   /* last sector of current cell */
+
+    off_t                   i_title_start;
     off_t                   i_start;
     off_t                   i_size;
 
-    int                     i_end_cell;
-
     /* Scrambling Information */
     struct css_s *          p_css;
 
     /* Structure that contains all information of the DVD */
-    struct ifo_s            ifo;
+    struct ifo_s *          p_ifo;
 
 } thread_dvd_data_t;
 
 /*****************************************************************************
  * Prototypes in dvd_ifo.c
  *****************************************************************************/
-struct ifo_s    IfoInit     ( int );
-int             IfoReadVTS  ( struct ifo_s * );
-void            IfoRead     ( struct ifo_s * );
-void            IfoEnd      ( ifo_t * );
+int   IfoInit     ( struct ifo_s **, int );
+int   IfoTitleSet ( struct ifo_s * );
+void  IfoEnd      ( struct ifo_s * );
 
 /*****************************************************************************
  * Prototypes in dvd_css.c
  *****************************************************************************/
-int             CSSTest             ( int );
-struct css_s *  CSSInit             ( int );
-void            CSSEnd              ( struct css_s * );
-int             CSSGetKey           ( struct css_s * );
-int             CSSDescrambleSector ( u8 * , u8 * );
+int   CSSTest             ( int );
+int   CSSInit             ( struct css_s * );
+int   CSSGetKey           ( struct css_s * );
+int   CSSDescrambleSector ( u8 * , u8 * );