dvdread.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:42k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * dvdread.c : DvdRead input module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2006 the VideoLAN team
  5.  * $Id: 41fa877f47156f0a56c96667904af926c00378e4 $
  6.  *
  7.  * Authors: Stéphane Borel <stef@via.ecp.fr>
  8.  *          Gildas Bazin <gbazin@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include <vlc_plugin.h>
  32. #include <vlc_input.h>
  33. #include <vlc_access.h>
  34. #include <vlc_charset.h>
  35. #include <vlc_interface.h>
  36. #include <vlc_dialog.h>
  37. #include <vlc_iso_lang.h>
  38. #include "../demux/ps.h"
  39. #ifdef HAVE_UNISTD_H
  40. #   include <unistd.h>
  41. #endif
  42. #include <fcntl.h>
  43. #include <sys/types.h>
  44. #include <sys/stat.h>
  45. #ifdef HAVE_DVDREAD_DVD_READER_H
  46.   #include <dvdread/dvd_reader.h>
  47.   #include <dvdread/ifo_types.h>
  48.   #include <dvdread/ifo_read.h>
  49.   #include <dvdread/nav_read.h>
  50.   #include <dvdread/nav_print.h>
  51. #else
  52.   #include <libdvdread/dvd_reader.h>
  53.   #include <libdvdread/ifo_types.h>
  54.   #include <libdvdread/ifo_read.h>
  55.   #include <libdvdread/nav_read.h>
  56.   #include <libdvdread/nav_print.h>
  57. #endif
  58. #include <assert.h>
  59. /*****************************************************************************
  60.  * Module descriptor
  61.  *****************************************************************************/
  62. #define ANGLE_TEXT N_("DVD angle")
  63. #define ANGLE_LONGTEXT N_( 
  64.     "Default DVD angle." )
  65. #define CACHING_TEXT N_("Caching value in ms")
  66. #define CACHING_LONGTEXT N_( 
  67.     "Caching value for DVDs. " 
  68.     "This value should be set in milliseconds." )
  69. #define CSSMETHOD_TEXT N_("Method used by libdvdcss for decryption")
  70. #define CSSMETHOD_LONGTEXT N_( 
  71.     "Set the method used by libdvdcss for key decryption.n" 
  72.     "title: decrypted title key is guessed from the encrypted sectors of " 
  73.            "the stream. Thus it should work with a file as well as the " 
  74.            "DVD device. But it sometimes takes much time to decrypt a title " 
  75.            "key and may even fail. With this method, the key is only checked "
  76.            "at the beginning of each title, so it won't work if the key " 
  77.            "changes in the middle of a title.n" 
  78.     "disc: the disc key is first cracked, then all title keys can be " 
  79.            "decrypted instantly, which allows us to check them often.n" 
  80.     "key: the same as "disc" if you don't have a file with player keys " 
  81.            "at compilation time. If you do, the decryption of the disc key " 
  82.            "will be faster with this method. It is the one that was used by " 
  83.            "libcss.n" 
  84.     "The default method is: key.")
  85. static const char *const psz_css_list[] = { "title", "disc", "key" };
  86. static const char *const psz_css_list_text[] = { N_("title"), N_("Disc"), N_("Key") };
  87. static int  Open ( vlc_object_t * );
  88. static void Close( vlc_object_t * );
  89. vlc_module_begin ()
  90.     set_shortname( N_("DVD without menus") )
  91.     set_description( N_("DVDRead Input (no menu support)") )
  92.     set_category( CAT_INPUT )
  93.     set_subcategory( SUBCAT_INPUT_ACCESS )
  94.     add_integer( "dvdread-angle", 1, NULL, ANGLE_TEXT,
  95.         ANGLE_LONGTEXT, false )
  96.     add_integer( "dvdread-caching", DEFAULT_PTS_DELAY / 1000, NULL,
  97.         CACHING_TEXT, CACHING_LONGTEXT, true )
  98.     add_string( "dvdread-css-method", NULL, NULL, CSSMETHOD_TEXT,
  99.                 CSSMETHOD_LONGTEXT, true )
  100.         change_string_list( psz_css_list, psz_css_list_text, 0 )
  101.     set_capability( "access_demux", 0 )
  102.     add_shortcut( "dvd" )
  103.     add_shortcut( "dvdread" )
  104.     add_shortcut( "dvdsimple" )
  105.     set_callbacks( Open, Close )
  106. vlc_module_end ()
  107. /* how many blocks DVDRead will read in each loop */
  108. #define DVD_BLOCK_READ_ONCE 4
  109. /*****************************************************************************
  110.  * Local prototypes
  111.  *****************************************************************************/
  112. struct demux_sys_t
  113. {
  114.     /* DVDRead state */
  115.     dvd_reader_t *p_dvdread;
  116.     dvd_file_t   *p_title;
  117.     ifo_handle_t *p_vmg_file;
  118.     ifo_handle_t *p_vts_file;
  119.     int i_title;
  120.     int i_chapter, i_chapters;
  121.     int i_angle, i_angles;
  122.     tt_srpt_t    *p_tt_srpt;
  123.     pgc_t        *p_cur_pgc;
  124.     dsi_t        dsi_pack;
  125.     int          i_ttn;
  126.     int i_pack_len;
  127.     int i_cur_block;
  128.     int i_next_vobu;
  129.     int i_mux_rate;
  130.     /* Current title start/end blocks */
  131.     int i_title_start_block;
  132.     int i_title_end_block;
  133.     int i_title_blocks;
  134.     int i_title_offset;
  135.     mtime_t i_title_cur_time;
  136.     int i_title_start_cell;
  137.     int i_title_end_cell;
  138.     int i_cur_cell;
  139.     int i_next_cell;
  140.     mtime_t i_cell_cur_time;
  141.     mtime_t i_cell_duration;
  142.     /* Track */
  143.     ps_track_t    tk[PS_TK_COUNT];
  144.     int           i_titles;
  145.     input_title_t **titles;
  146.     /* Video */
  147.     int i_aspect;
  148.     /* SPU */
  149.     uint32_t clut[16];
  150. };
  151. static int Control   ( demux_t *, int, va_list );
  152. static int Demux     ( demux_t * );
  153. static int DemuxBlock( demux_t *, uint8_t *, int );
  154. static void DemuxTitles( demux_t *, int * );
  155. static void ESNew( demux_t *, int, int );
  156. static int  DvdReadSetArea  ( demux_t *, int, int, int );
  157. static void DvdReadSeek     ( demux_t *, int );
  158. static void DvdReadHandleDSI( demux_t *, uint8_t * );
  159. static void DvdReadFindCell ( demux_t * );
  160. /*****************************************************************************
  161.  * Open:
  162.  *****************************************************************************/
  163. static int Open( vlc_object_t *p_this )
  164. {
  165.     demux_t      *p_demux = (demux_t*)p_this;
  166.     demux_sys_t  *p_sys;
  167.     char         *psz_name;
  168.     char         *psz_dvdcss_env;
  169.     dvd_reader_t *p_dvdread;
  170.     ifo_handle_t *p_vmg_file;
  171.     vlc_value_t  val;
  172.     if( !p_demux->psz_path || !*p_demux->psz_path )
  173.     {
  174.         /* Only when selected */
  175.         if( !p_this->b_force ) return VLC_EGENERIC;
  176.         psz_name = var_CreateGetString( p_this, "dvd" );
  177.         if( !psz_name )
  178.         {
  179.             psz_name = strdup("");
  180.         }
  181.     }
  182.     else
  183.         psz_name = ToLocaleDup( p_demux->psz_path );
  184. #ifdef WIN32
  185.     if( psz_name[0] && psz_name[1] == ':' &&
  186.         psz_name[2] == '\' && psz_name[3] == '' ) psz_name[2] = '';
  187. #endif
  188.     /* Override environment variable DVDCSS_METHOD with config option */
  189.     psz_dvdcss_env = config_GetPsz( p_demux, "dvdread-css-method" );
  190.     if( psz_dvdcss_env && *psz_dvdcss_env )
  191. #ifdef HAVE_SETENV
  192.         setenv( "DVDCSS_METHOD", psz_dvdcss_env, 1 );
  193. #else
  194.     {
  195.         /* FIXME: this create a small memory leak */
  196.         char *psz_env;
  197.         psz_env = malloc( strlen("DVDCSS_METHOD=") +
  198.                           strlen( psz_dvdcss_env ) + 1 );
  199.         if( !psz_env )
  200.         {
  201.             free( psz_dvdcss_env );
  202.             return VLC_ENOMEM;
  203.         }
  204.         sprintf( psz_env, "%s%s", "DVDCSS_METHOD=", psz_dvdcss_env );
  205.         putenv( psz_env );
  206.     }
  207. #endif
  208.     free( psz_dvdcss_env );
  209.     /* Open dvdread */
  210.     if( !(p_dvdread = DVDOpen( psz_name )) )
  211.     {
  212.         msg_Err( p_demux, "DVDRead cannot open source: %s", psz_name );
  213.         dialog_Fatal( p_demux, _("Playback failure"),
  214.                         _("DVDRead could not open the disc "%s"."), psz_name );
  215.         free( psz_name );
  216.         return VLC_EGENERIC;
  217.     }
  218.     free( psz_name );
  219.     /* Ifo allocation & initialisation */
  220.     if( !( p_vmg_file = ifoOpen( p_dvdread, 0 ) ) )
  221.     {
  222.         msg_Warn( p_demux, "cannot open VMG info" );
  223.         return VLC_EGENERIC;
  224.     }
  225.     msg_Dbg( p_demux, "VMG opened" );
  226.     /* Fill p_demux field */
  227.     DEMUX_INIT_COMMON(); p_sys = p_demux->p_sys;
  228.     ps_track_init( p_sys->tk );
  229.     p_sys->i_aspect = -1;
  230.     p_sys->i_title_cur_time = (mtime_t) 0;
  231.     p_sys->i_cell_cur_time = (mtime_t) 0;
  232.     p_sys->i_cell_duration = (mtime_t) 0;
  233.     p_sys->p_dvdread = p_dvdread;
  234.     p_sys->p_vmg_file = p_vmg_file;
  235.     p_sys->p_title = NULL;
  236.     p_sys->p_vts_file = NULL;
  237.     p_sys->i_title = p_sys->i_chapter = -1;
  238.     p_sys->i_mux_rate = 0;
  239.     var_Create( p_demux, "dvdread-angle", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
  240.     var_Get( p_demux, "dvdread-angle", &val );
  241.     p_sys->i_angle = val.i_int > 0 ? val.i_int : 1;
  242.     DemuxTitles( p_demux, &p_sys->i_angle );
  243.     if( DvdReadSetArea( p_demux, 0, 0, p_sys->i_angle ) != VLC_SUCCESS )
  244.     {
  245.         Close( p_this );
  246.         msg_Err( p_demux, "DvdReadSetArea(0,0,%i) failed (can't decrypt DVD?)",
  247.                  p_sys->i_angle );
  248.         return VLC_EGENERIC;
  249.     }
  250.     /* Update default_pts to a suitable value for dvdread access */
  251.     var_Create( p_demux, "dvdread-caching",
  252.                 VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
  253.     return VLC_SUCCESS;
  254. }
  255. /*****************************************************************************
  256.  * Close:
  257.  *****************************************************************************/
  258. static void Close( vlc_object_t *p_this )
  259. {
  260.     demux_t     *p_demux = (demux_t*)p_this;
  261.     demux_sys_t *p_sys = p_demux->p_sys;
  262.     int i;
  263.     for( i = 0; i < PS_TK_COUNT; i++ )
  264.     {
  265.         ps_track_t *tk = &p_sys->tk[i];
  266.         if( tk->b_seen )
  267.         {
  268.             es_format_Clean( &tk->fmt );
  269.             if( tk->es ) es_out_Del( p_demux->out, tk->es );
  270.         }
  271.     }
  272.     /* Close libdvdread */
  273.     if( p_sys->p_title ) DVDCloseFile( p_sys->p_title );
  274.     if( p_sys->p_vts_file ) ifoClose( p_sys->p_vts_file );
  275.     if( p_sys->p_vmg_file ) ifoClose( p_sys->p_vmg_file );
  276.     DVDClose( p_sys->p_dvdread );
  277.     free( p_sys );
  278. }
  279. static int64_t dvdtime_to_time( dvd_time_t *dtime, uint8_t still_time )
  280. {
  281. /* Macro to convert Binary Coded Decimal to Decimal */
  282. #define BCD2D(__x__) (((__x__ & 0xf0) >> 4) * 10 + (__x__ & 0x0f))
  283.     double f_fps, f_ms;
  284.     int64_t i_micro_second = 0;
  285.     if (still_time == 0 || still_time == 0xFF)
  286.     {
  287.         i_micro_second += (int64_t)(BCD2D(dtime->hour)) * 60 * 60 * 1000000;
  288.         i_micro_second += (int64_t)(BCD2D(dtime->minute)) * 60 * 1000000;
  289.         i_micro_second += (int64_t)(BCD2D(dtime->second)) * 1000000;
  290.         switch((dtime->frame_u & 0xc0) >> 6)
  291.         {
  292.         case 1:
  293.             f_fps = 25.0;
  294.             break;
  295.         case 3:
  296.             f_fps = 29.97;
  297.             break;
  298.         default:
  299.             f_fps = 2500.0;
  300.             break;
  301.         }
  302.         f_ms = BCD2D(dtime->frame_u&0x3f) * 1000.0 / f_fps;
  303.         i_micro_second += (int64_t)(f_ms * 1000.0);
  304.     }
  305.     else
  306.     {
  307.         i_micro_second = still_time;
  308.         i_micro_second = (int64_t)((double)i_micro_second * 1000000.0);
  309.     }
  310.     return i_micro_second;
  311. }
  312. /*****************************************************************************
  313.  * Control:
  314.  *****************************************************************************/
  315. static int Control( demux_t *p_demux, int i_query, va_list args )
  316. {
  317.     demux_sys_t *p_sys = p_demux->p_sys;
  318.     double f, *pf;
  319.     bool *pb;
  320.     int64_t *pi64;
  321.     input_title_t ***ppp_title;
  322.     int *pi_int;
  323.     int i;
  324.     switch( i_query )
  325.     {
  326.         case DEMUX_GET_POSITION:
  327.         {
  328.             pf = (double*) va_arg( args, double* );
  329.             if( p_sys->i_title_blocks > 0 )
  330.                 *pf = (double)p_sys->i_title_offset / p_sys->i_title_blocks;
  331.             else
  332.                 *pf = 0.0;
  333.             return VLC_SUCCESS;
  334.         }
  335.         case DEMUX_SET_POSITION:
  336.         {
  337.             f = (double)va_arg( args, double );
  338.             DvdReadSeek( p_demux, f * p_sys->i_title_blocks );
  339.             return VLC_SUCCESS;
  340.         }
  341.         case DEMUX_GET_TIME:
  342.             pi64 = (int64_t*)va_arg( args, int64_t * );
  343.             if( p_demux->info.i_title >= 0 && p_demux->info.i_title < p_sys->i_titles )
  344.             {
  345.                 *pi64 = (int64_t) dvdtime_to_time( &p_sys->p_cur_pgc->playback_time, 0 ) /
  346.                         p_sys->i_title_blocks * p_sys->i_title_offset;
  347.                 return VLC_SUCCESS;
  348.             }
  349.             *pi64 = 0;
  350.             return VLC_EGENERIC;
  351.         case DEMUX_GET_LENGTH:
  352.             pi64 = (int64_t*)va_arg( args, int64_t * );
  353.             if( p_demux->info.i_title >= 0 && p_demux->info.i_title < p_sys->i_titles )
  354.             {
  355.                 *pi64 = (int64_t)dvdtime_to_time( &p_sys->p_cur_pgc->playback_time, 0 );
  356.                 return VLC_SUCCESS;
  357.             }
  358.             *pi64 = 0;
  359.             return VLC_EGENERIC;
  360.         /* Special for access_demux */
  361.         case DEMUX_CAN_PAUSE:
  362.         case DEMUX_CAN_SEEK:
  363.         case DEMUX_CAN_CONTROL_PACE:
  364.             /* TODO */
  365.             pb = (bool*)va_arg( args, bool * );
  366.             *pb = true;
  367.             return VLC_SUCCESS;
  368.         case DEMUX_SET_PAUSE_STATE:
  369.             return VLC_SUCCESS;
  370.         case DEMUX_GET_TITLE_INFO:
  371.             ppp_title = (input_title_t***)va_arg( args, input_title_t*** );
  372.             pi_int    = (int*)va_arg( args, int* );
  373.             *((int*)va_arg( args, int* )) = 1; /* Title offset */
  374.             *((int*)va_arg( args, int* )) = 1; /* Chapter offset */
  375.             /* Duplicate title infos */
  376.             *pi_int = p_sys->i_titles;
  377.             *ppp_title = malloc( sizeof(input_title_t **) * p_sys->i_titles );
  378.             for( i = 0; i < p_sys->i_titles; i++ )
  379.             {
  380.                 (*ppp_title)[i] = vlc_input_title_Duplicate(p_sys->titles[i]);
  381.             }
  382.             return VLC_SUCCESS;
  383.         case DEMUX_SET_TITLE:
  384.             i = (int)va_arg( args, int );
  385.             if( DvdReadSetArea( p_demux, i, 0, -1 ) != VLC_SUCCESS )
  386.             {
  387.                 msg_Warn( p_demux, "cannot set title/chapter" );
  388.                 return VLC_EGENERIC;
  389.             }
  390.             p_demux->info.i_update |=
  391.                 INPUT_UPDATE_TITLE | INPUT_UPDATE_SEEKPOINT;
  392.             p_demux->info.i_title = i;
  393.             p_demux->info.i_seekpoint = 0;
  394.             return VLC_SUCCESS;
  395.         case DEMUX_SET_SEEKPOINT:
  396.             i = (int)va_arg( args, int );
  397.             if( DvdReadSetArea( p_demux, -1, i, -1 ) != VLC_SUCCESS )
  398.             {
  399.                 msg_Warn( p_demux, "cannot set title/chapter" );
  400.                 return VLC_EGENERIC;
  401.             }
  402.             p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT;
  403.             p_demux->info.i_seekpoint = i;
  404.             return VLC_SUCCESS;
  405.         case DEMUX_GET_PTS_DELAY:
  406.             pi64 = (int64_t*)va_arg( args, int64_t * );
  407.             *pi64 = (int64_t)var_GetInteger( p_demux, "dvdread-caching" )*1000;
  408.             return VLC_SUCCESS;
  409.         /* TODO implement others */
  410.         default:
  411.             return VLC_EGENERIC;
  412.     }
  413. }
  414. /*****************************************************************************
  415.  * Demux:
  416.  *****************************************************************************/
  417. static int Demux( demux_t *p_demux )
  418. {
  419.     demux_sys_t *p_sys = p_demux->p_sys;
  420.     uint8_t p_buffer[DVD_VIDEO_LB_LEN * DVD_BLOCK_READ_ONCE];
  421.     int i_blocks_once, i_read;
  422.     int i;
  423.     /*
  424.      * Playback by cell in this pgc, starting at the cell for our chapter.
  425.      */
  426.     /*
  427.      * Check end of pack, and select the following one
  428.      */
  429.     if( !p_sys->i_pack_len )
  430.     {
  431.         /* Read NAV packet */
  432.         if( DVDReadBlocks( p_sys->p_title, p_sys->i_next_vobu,
  433.                            1, p_buffer ) != 1 )
  434.         {
  435.             msg_Err( p_demux, "read failed for block %d", p_sys->i_next_vobu );
  436.             dialog_Fatal( p_demux, _("Playback failure"),
  437.                           _("DVDRead could not read block %d."),
  438.                           p_sys->i_next_vobu );
  439.             return -1;
  440.         }
  441.         /* Basic check to be sure we don't have a empty title
  442.          * go to next title if so */
  443.         //assert( p_buffer[41] == 0xbf && p_buffer[1027] == 0xbf );
  444.         /* Parse the contained dsi packet */
  445.         DvdReadHandleDSI( p_demux, p_buffer );
  446.         /* End of title */
  447.         if( p_sys->i_cur_cell >= p_sys->p_cur_pgc->nr_of_cells )
  448.         {
  449.             if( p_sys->i_title + 1 >= p_sys->i_titles )
  450.             {
  451.                 return 0; /* EOF */
  452.             }
  453.             DvdReadSetArea( p_demux, p_sys->i_title + 1, 0, -1 );
  454.         }
  455.         if( p_sys->i_pack_len >= 1024 )
  456.         {
  457.             msg_Err( p_demux, "i_pack_len >= 1024 (%i). "
  458.                      "This shouldn't happen!", p_sys->i_pack_len );
  459.             return 0; /* EOF */
  460.         }
  461.         /* FIXME: Ugly kludge: we send the pack block to the input for it
  462.          * sometimes has a zero scr and restart the sync */
  463.         p_sys->i_cur_block++;
  464.         p_sys->i_title_offset++;
  465.         DemuxBlock( p_demux, p_buffer, DVD_VIDEO_LB_LEN );
  466.     }
  467.     if( p_sys->i_cur_cell >= p_sys->p_cur_pgc->nr_of_cells )
  468.     {
  469.         if( p_sys->i_title + 1 >= p_sys->i_titles )
  470.         {
  471.             return 0; /* EOF */
  472.         }
  473.         DvdReadSetArea( p_demux, p_sys->i_title + 1, 0, -1 );
  474.     }
  475.     /*
  476.      * Read actual data
  477.      */
  478.     i_blocks_once = __MIN( p_sys->i_pack_len, DVD_BLOCK_READ_ONCE );
  479.     p_sys->i_pack_len -= i_blocks_once;
  480.     /* Reads from DVD */
  481.     i_read = DVDReadBlocks( p_sys->p_title, p_sys->i_cur_block,
  482.                             i_blocks_once, p_buffer );
  483.     if( i_read != i_blocks_once )
  484.     {
  485.         msg_Err( p_demux, "read failed for %d/%d blocks at 0x%02x",
  486.                  i_read, i_blocks_once, p_sys->i_cur_block );
  487.         dialog_Fatal( p_demux, _("Playback failure"),
  488.                         _("DVDRead could not read %d/%d blocks at 0x%02x."),
  489.                         i_read, i_blocks_once, p_sys->i_cur_block );
  490.         return -1;
  491.     }
  492.     p_sys->i_cur_block += i_read;
  493.     p_sys->i_title_offset += i_read;
  494. #if 0
  495.     msg_Dbg( p_demux, "i_blocks: %d len: %d current: 0x%02x",
  496.              i_read, p_sys->i_pack_len, p_sys->i_cur_block );
  497. #endif
  498.     for( i = 0; i < i_read; i++ )
  499.     {
  500.         DemuxBlock( p_demux, p_buffer + i * DVD_VIDEO_LB_LEN,
  501.                     DVD_VIDEO_LB_LEN );
  502.     }
  503. #undef p_pgc
  504.     return 1;
  505. }
  506. /*****************************************************************************
  507.  * DemuxBlock: demux a given block
  508.  *****************************************************************************/
  509. static int DemuxBlock( demux_t *p_demux, uint8_t *pkt, int i_pkt )
  510. {
  511.     demux_sys_t *p_sys = p_demux->p_sys;
  512.     uint8_t     *p = pkt;
  513.     while( p && p < &pkt[i_pkt] )
  514.     {
  515.         block_t *p_pkt;
  516.         int i_size = &pkt[i_pkt] - p;
  517.         if( i_size < 6 )
  518.             break;
  519.  
  520.         i_size = ps_pkt_size( p, i_size );
  521.         if( i_size <= 0 )
  522.         {
  523.             break;
  524.         }
  525.         /* Create a block */
  526.         p_pkt = block_New( p_demux, i_size );
  527.         memcpy( p_pkt->p_buffer, p, i_size);
  528.         /* Parse it and send it */
  529.         switch( 0x100 | p[3] )
  530.         {
  531.         case 0x1b9:
  532.         case 0x1bb:
  533.         case 0x1bc:
  534. #ifdef DVDREAD_DEBUG
  535.             if( p[3] == 0xbc )
  536.             {
  537.                 msg_Warn( p_demux, "received a PSM packet" );
  538.             }
  539.             else if( p[3] == 0xbb )
  540.             {
  541.                 msg_Warn( p_demux, "received a SYSTEM packet" );
  542.             }
  543. #endif
  544.             block_Release( p_pkt );
  545.             break;
  546.         case 0x1ba:
  547.         {
  548.             int64_t i_scr;
  549.             int i_mux_rate;
  550.             if( !ps_pkt_parse_pack( p_pkt, &i_scr, &i_mux_rate ) )
  551.             {
  552.                 es_out_Control( p_demux->out, ES_OUT_SET_PCR, i_scr );
  553.                 if( i_mux_rate > 0 ) p_sys->i_mux_rate = i_mux_rate;
  554.             }
  555.             block_Release( p_pkt );
  556.             break;
  557.         }
  558.         default:
  559.         {
  560.             int i_id = ps_pkt_id( p_pkt );
  561.             if( i_id >= 0xc0 )
  562.             {
  563.                 ps_track_t *tk = &p_sys->tk[PS_ID_TO_TK(i_id)];
  564.                 if( !tk->b_seen )
  565.                 {
  566.                     ESNew( p_demux, i_id, 0 );
  567.                 }
  568.                 if( tk->b_seen && tk->es &&
  569.                     !ps_pkt_parse_pes( p_pkt, tk->i_skip ) )
  570.                 {
  571.                     es_out_Send( p_demux->out, tk->es, p_pkt );
  572.                 }
  573.                 else
  574.                 {
  575.                     block_Release( p_pkt );
  576.                 }
  577.             }
  578.             else
  579.             {
  580.                 block_Release( p_pkt );
  581.             }
  582.             break;
  583.         }
  584.         }
  585.         p += i_size;
  586.     }
  587.     return VLC_SUCCESS;
  588. }
  589. /*****************************************************************************
  590.  * ESNew: register a new elementary stream
  591.  *****************************************************************************/
  592. static void ESNew( demux_t *p_demux, int i_id, int i_lang )
  593. {
  594.     demux_sys_t *p_sys = p_demux->p_sys;
  595.     ps_track_t  *tk = &p_sys->tk[PS_ID_TO_TK(i_id)];
  596.     char psz_language[3];
  597.     if( tk->b_seen ) return;
  598.     if( ps_track_fill( tk, 0, i_id ) )
  599.     {
  600.         msg_Warn( p_demux, "unknown codec for id=0x%x", i_id );
  601.         return;
  602.     }
  603.     psz_language[0] = psz_language[1] = psz_language[2] = 0;
  604.     if( i_lang && i_lang != 0xffff )
  605.     {
  606.         psz_language[0] = (i_lang >> 8)&0xff;
  607.         psz_language[1] = (i_lang     )&0xff;
  608.     }
  609.     /* Add a new ES */
  610.     if( tk->fmt.i_cat == VIDEO_ES )
  611.     {
  612.         switch( p_sys->i_aspect )
  613.         {
  614.         case 1: tk->fmt.video.i_aspect = VOUT_ASPECT_FACTOR; break;
  615.         case 2: tk->fmt.video.i_aspect = VOUT_ASPECT_FACTOR * 4 / 3; break;
  616.         case 3: tk->fmt.video.i_aspect = VOUT_ASPECT_FACTOR * 16 / 9; break;
  617.         case 4: tk->fmt.video.i_aspect = VOUT_ASPECT_FACTOR * 221 / 10; break;
  618.         default:
  619.             tk->fmt.video.i_aspect = 0;
  620.             break;
  621.         }
  622.     }
  623.     else if( tk->fmt.i_cat == AUDIO_ES )
  624.     {
  625.         int i_audio = -1;
  626.         /* find the audio number PLEASE find another way */
  627.         if( (i_id&0xbdf8) == 0xbd88 )       /* dts */
  628.         {
  629.             i_audio = i_id&0x07;
  630.         }
  631.         else if( (i_id&0xbdf0) == 0xbd80 )  /* a52 */
  632.         {
  633.             i_audio = i_id&0xf;
  634.         }
  635.         else if( (i_id&0xbdf0) == 0xbda0 )  /* lpcm */
  636.         {
  637.             i_audio = i_id&0x1f;
  638.         }
  639.         else if( ( i_id&0xe0 ) == 0xc0 )    /* mpga */
  640.         {
  641.             i_audio = i_id&0x1f;
  642.         }
  643.         if( psz_language[0] ) tk->fmt.psz_language = strdup( psz_language );
  644.     }
  645.     else if( tk->fmt.i_cat == SPU_ES )
  646.     {
  647.         /* Palette */
  648.         tk->fmt.subs.spu.palette[0] = 0xBeef;
  649.         memcpy( &tk->fmt.subs.spu.palette[1], p_sys->clut,
  650.                 16 * sizeof( uint32_t ) );
  651.         if( psz_language[0] ) tk->fmt.psz_language = strdup( psz_language );
  652.     }
  653.     tk->es = es_out_Add( p_demux->out, &tk->fmt );
  654.     tk->b_seen = true;
  655. }
  656. /*****************************************************************************
  657.  * DvdReadSetArea: initialize input data for title x, chapter y.
  658.  * It should be called for each user navigation request.
  659.  *****************************************************************************
  660.  * Take care that i_title and i_chapter start from 0.
  661.  *****************************************************************************/
  662. static int DvdReadSetArea( demux_t *p_demux, int i_title, int i_chapter,
  663.                            int i_angle )
  664. {
  665.     demux_sys_t *p_sys = p_demux->p_sys;
  666.     int pgc_id = 0, pgn = 0;
  667.     int i;
  668. #define p_pgc p_sys->p_cur_pgc
  669. #define p_vmg p_sys->p_vmg_file
  670. #define p_vts p_sys->p_vts_file
  671.     if( i_title >= 0 && i_title < p_sys->i_titles &&
  672.         i_title != p_sys->i_title )
  673.     {
  674.         int i_start_cell, i_end_cell;
  675.         if( p_sys->p_title != NULL ) DVDCloseFile( p_sys->p_title );
  676.         if( p_vts != NULL ) ifoClose( p_vts );
  677.         p_sys->i_title = i_title;
  678.         /*
  679.          *  We have to load all title information
  680.          */
  681.         msg_Dbg( p_demux, "open VTS %d, for title %d",
  682.                  p_vmg->tt_srpt->title[i_title].title_set_nr, i_title + 1 );
  683.         /* Ifo vts */
  684.         if( !( p_vts = ifoOpen( p_sys->p_dvdread,
  685.                p_vmg->tt_srpt->title[i_title].title_set_nr ) ) )
  686.         {
  687.             msg_Err( p_demux, "fatal error in vts ifo" );
  688.             return VLC_EGENERIC;
  689.         }
  690.         /* Title position inside the selected vts */
  691.         p_sys->i_ttn = p_vmg->tt_srpt->title[i_title].vts_ttn;
  692.         /* Find title start/end */
  693.         pgc_id = p_vts->vts_ptt_srpt->title[p_sys->i_ttn - 1].ptt[0].pgcn;
  694.         pgn = p_vts->vts_ptt_srpt->title[p_sys->i_ttn - 1].ptt[0].pgn;
  695.         p_pgc = p_vts->vts_pgcit->pgci_srp[pgc_id - 1].pgc;
  696.         p_sys->i_title_start_cell =
  697.             i_start_cell = p_pgc->program_map[pgn - 1] - 1;
  698.         p_sys->i_title_start_block =
  699.             p_pgc->cell_playback[i_start_cell].first_sector;
  700.         p_sys->i_title_end_cell =
  701.             i_end_cell = p_pgc->nr_of_cells - 1;
  702.         p_sys->i_title_end_block =
  703.             p_pgc->cell_playback[i_end_cell].last_sector;
  704.         p_sys->i_title_offset = 0;
  705.         p_sys->i_title_blocks = 0;
  706.         for( i = i_start_cell; i <= i_end_cell; i++ )
  707.         {
  708.             p_sys->i_title_blocks += p_pgc->cell_playback[i].last_sector -
  709.                 p_pgc->cell_playback[i].first_sector + 1;
  710.         }
  711.         msg_Dbg( p_demux, "title %d vts_title %d pgc %d pgn %d "
  712.                  "start %d end %d blocks: %d",
  713.                  i_title + 1, p_sys->i_ttn, pgc_id, pgn,
  714.                  p_sys->i_title_start_block, p_sys->i_title_end_block,
  715.                  p_sys->i_title_blocks );
  716.         /*
  717.          * Set properties for current chapter
  718.          */
  719.         p_sys->i_chapter = 0;
  720.         p_sys->i_chapters =
  721.             p_vts->vts_ptt_srpt->title[p_sys->i_ttn - 1].nr_of_ptts;
  722.         pgc_id = p_vts->vts_ptt_srpt->title[
  723.                     p_sys->i_ttn - 1].ptt[p_sys->i_chapter].pgcn;
  724.         pgn = p_vts->vts_ptt_srpt->title[
  725.                     p_sys->i_ttn - 1].ptt[p_sys->i_chapter].pgn;
  726.         p_pgc = p_vts->vts_pgcit->pgci_srp[pgc_id - 1].pgc;
  727.         p_sys->i_pack_len = 0;
  728.         p_sys->i_next_cell =
  729.             p_sys->i_cur_cell = p_pgc->program_map[pgn - 1] - 1;
  730.         DvdReadFindCell( p_demux );
  731.         p_sys->i_next_vobu = p_sys->i_cur_block =
  732.             p_pgc->cell_playback[p_sys->i_cur_cell].first_sector;
  733.         /*
  734.          * Angle management
  735.          */
  736.         p_sys->i_angles = p_vmg->tt_srpt->title[i_title].nr_of_angles;
  737.         if( p_sys->i_angle > p_sys->i_angles ) p_sys->i_angle = 1;
  738.         /*
  739.          * We've got enough info, time to open the title set data.
  740.          */
  741.         if( !( p_sys->p_title = DVDOpenFile( p_sys->p_dvdread,
  742.             p_vmg->tt_srpt->title[i_title].title_set_nr,
  743.             DVD_READ_TITLE_VOBS ) ) )
  744.         {
  745.             msg_Err( p_demux, "cannot open title (VTS_%02d_1.VOB)",
  746.                      p_vmg->tt_srpt->title[i_title].title_set_nr );
  747.             return VLC_EGENERIC;
  748.         }
  749.         //IfoPrintTitle( p_demux );
  750.         /*
  751.          * Destroy obsolete ES by reinitializing program 0
  752.          * and find all ES in title with ifo data
  753.          */
  754.         es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
  755.         for( i = 0; i < PS_TK_COUNT; i++ )
  756.         {
  757.             ps_track_t *tk = &p_sys->tk[i];
  758.             if( tk->b_seen )
  759.             {
  760.                 es_format_Clean( &tk->fmt );
  761.                 if( tk->es ) es_out_Del( p_demux->out, tk->es );
  762.             }
  763.             tk->b_seen = false;
  764.         }
  765.         if( p_demux->info.i_title != i_title )
  766.         {
  767.             p_demux->info.i_update |=
  768.                 INPUT_UPDATE_TITLE | INPUT_UPDATE_SEEKPOINT;
  769.             p_demux->info.i_title = i_title;
  770.             p_demux->info.i_seekpoint = 0;
  771.         }
  772.         /* TODO: re-add angles */
  773.         ESNew( p_demux, 0xe0, 0 ); /* Video, FIXME ? */
  774.         p_sys->i_aspect = p_vts->vtsi_mat->vts_video_attr.display_aspect_ratio;
  775. #define audio_control 
  776.     p_sys->p_vts_file->vts_pgcit->pgci_srp[pgc_id-1].pgc->audio_control[i-1]
  777.         /* Audio ES, in the order they appear in the .ifo */
  778.         for( i = 1; i <= p_vts->vtsi_mat->nr_of_vts_audio_streams; i++ )
  779.         {
  780.             int i_position = 0;
  781.             uint16_t i_id;
  782.             //IfoPrintAudio( p_demux, i );
  783.             /* Audio channel is active if first byte is 0x80 */
  784.             if( audio_control & 0x8000 )
  785.             {
  786.                 i_position = ( audio_control & 0x7F00 ) >> 8;
  787.                 msg_Dbg( p_demux, "audio position  %d", i_position );
  788.                 switch( p_vts->vtsi_mat->vts_audio_attr[i - 1].audio_format )
  789.                 {
  790.                 case 0x00: /* A52 */
  791.                     i_id = (0x80 + i_position) | 0xbd00;
  792.                     break;
  793.                 case 0x02:
  794.                 case 0x03: /* MPEG audio */
  795.                     i_id = 0xc000 + i_position;
  796.                     break;
  797.                 case 0x04: /* LPCM */
  798.                     i_id = (0xa0 + i_position) | 0xbd00;
  799.                     break;
  800.                 case 0x06: /* DTS */
  801.                     i_id = (0x88 + i_position) | 0xbd00;
  802.                     break;
  803.                 default:
  804.                     i_id = 0;
  805.                     msg_Err( p_demux, "unknown audio type %.2x",
  806.                         p_vts->vtsi_mat->vts_audio_attr[i - 1].audio_format );
  807.                 }
  808.                 ESNew( p_demux, i_id, p_sys->p_vts_file->vtsi_mat->
  809.                        vts_audio_attr[i - 1].lang_code );
  810.             }
  811.         }
  812. #undef audio_control
  813. #define spu_palette 
  814.     p_sys->p_vts_file->vts_pgcit->pgci_srp[pgc_id-1].pgc->palette
  815.         memcpy( p_sys->clut, spu_palette, 16 * sizeof( uint32_t ) );
  816. #define spu_control 
  817.     p_sys->p_vts_file->vts_pgcit->pgci_srp[pgc_id-1].pgc->subp_control[i-1]
  818.         /* Sub Picture ES */
  819.         for( i = 1; i <= p_vts->vtsi_mat->nr_of_vts_subp_streams; i++ )
  820.         {
  821.             int i_position = 0;
  822.             uint16_t i_id;
  823.             //IfoPrintSpu( p_sys, i );
  824.             msg_Dbg( p_demux, "spu %d 0x%02x", i, spu_control );
  825.             if( spu_control & 0x80000000 )
  826.             {
  827.                 /*  there are several streams for one spu */
  828.                 if( p_vts->vtsi_mat->vts_video_attr.display_aspect_ratio )
  829.                 {
  830.                     /* 16:9 */
  831.                     switch( p_vts->vtsi_mat->vts_video_attr.permitted_df )
  832.                     {
  833.                     case 1: /* letterbox */
  834.                         i_position = spu_control & 0xff;
  835.                         break;
  836.                     case 2: /* pan&scan */
  837.                         i_position = ( spu_control >> 8 ) & 0xff;
  838.                         break;
  839.                     default: /* widescreen */
  840.                         i_position = ( spu_control >> 16 ) & 0xff;
  841.                         break;
  842.                     }
  843.                 }
  844.                 else
  845.                 {
  846.                     /* 4:3 */
  847.                     i_position = ( spu_control >> 24 ) & 0x7F;
  848.                 }
  849.                 i_id = (0x20 + i_position) | 0xbd00;
  850.                 ESNew( p_demux, i_id, p_sys->p_vts_file->vtsi_mat->
  851.                        vts_subp_attr[i - 1].lang_code );
  852.             }
  853.         }
  854. #undef spu_control
  855.     }
  856.     else if( i_title != -1 && i_title != p_sys->i_title )
  857.     {
  858.         return VLC_EGENERIC; /* Couldn't set title */
  859.     }
  860.     /*
  861.      * Chapter selection
  862.      */
  863.     if( i_chapter >= 0 && i_chapter < p_sys->i_chapters )
  864.     {
  865.         pgc_id = p_vts->vts_ptt_srpt->title[
  866.                      p_sys->i_ttn - 1].ptt[i_chapter].pgcn;
  867.         pgn = p_vts->vts_ptt_srpt->title[
  868.                   p_sys->i_ttn - 1].ptt[i_chapter].pgn;
  869.         p_pgc = p_vts->vts_pgcit->pgci_srp[pgc_id - 1].pgc;
  870.         p_sys->i_cur_cell = p_pgc->program_map[pgn - 1] - 1;
  871.         p_sys->i_chapter = i_chapter;
  872.         DvdReadFindCell( p_demux );
  873.         p_sys->i_title_offset = 0;
  874.         for( i = p_sys->i_title_start_cell; i < p_sys->i_cur_cell; i++ )
  875.         {
  876.             p_sys->i_title_offset += p_pgc->cell_playback[i].last_sector -
  877.                 p_pgc->cell_playback[i].first_sector + 1;
  878.         }
  879.         p_sys->i_pack_len = 0;
  880.         p_sys->i_next_vobu = p_sys->i_cur_block =
  881.             p_pgc->cell_playback[p_sys->i_cur_cell].first_sector;
  882.         if( p_demux->info.i_seekpoint != i_chapter )
  883.         {
  884.             p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT;
  885.             p_demux->info.i_seekpoint = i_chapter;
  886.         }
  887.     }
  888.     else if( i_chapter != -1 )
  889.     {
  890.         return VLC_EGENERIC; /* Couldn't set chapter */
  891.     }
  892. #undef p_pgc
  893. #undef p_vts
  894. #undef p_vmg
  895.     return VLC_SUCCESS;
  896. }
  897. /*****************************************************************************
  898.  * DvdReadSeek : Goes to a given position on the stream.
  899.  *****************************************************************************
  900.  * This one is used by the input and translate chronological position from
  901.  * input to logical position on the device.
  902.  *****************************************************************************/
  903. static void DvdReadSeek( demux_t *p_demux, int i_block_offset )
  904. {
  905.     demux_sys_t *p_sys = p_demux->p_sys;
  906.     int i_chapter = 0;
  907.     int i_cell = 0;
  908.     int i_vobu = 0;
  909.     int i_sub_cell = 0;
  910.     int i_block;
  911. #define p_pgc p_sys->p_cur_pgc
  912. #define p_vts p_sys->p_vts_file
  913.     /* Find cell */
  914.     i_block = i_block_offset;
  915.     for( i_cell = p_sys->i_title_start_cell;
  916.          i_cell <= p_sys->i_title_end_cell; i_cell++ )
  917.     {
  918.         if( i_block < (int)p_pgc->cell_playback[i_cell].last_sector -
  919.             (int)p_pgc->cell_playback[i_cell].first_sector + 1 ) break;
  920.         i_block -= (p_pgc->cell_playback[i_cell].last_sector -
  921.             p_pgc->cell_playback[i_cell].first_sector + 1);
  922.     }
  923.     if( i_cell > p_sys->i_title_end_cell )
  924.     {
  925.         msg_Err( p_demux, "couldn't find cell for block %i", i_block_offset );
  926.         return;
  927.     }
  928.     i_block += p_pgc->cell_playback[i_cell].first_sector;
  929.     p_sys->i_title_offset = i_block_offset;
  930.     /* Find chapter */
  931.     for( i_chapter = 0; i_chapter < p_sys->i_chapters; i_chapter++ )
  932.     {
  933.         int pgc_id, pgn, i_tmp;
  934.         pgc_id = p_vts->vts_ptt_srpt->title[
  935.                     p_sys->i_ttn - 1].ptt[i_chapter].pgcn;
  936.         pgn = p_vts->vts_ptt_srpt->title[
  937.                     p_sys->i_ttn - 1].ptt[i_chapter].pgn;
  938.         i_tmp = p_vts->vts_pgcit->pgci_srp[pgc_id - 1].pgc->program_map[pgn-1];
  939.         if( i_tmp > i_cell ) break;
  940.     }
  941.     if( i_chapter < p_sys->i_chapters &&
  942.         p_demux->info.i_seekpoint != i_chapter )
  943.     {
  944.         p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT;
  945.         p_demux->info.i_seekpoint = i_chapter;
  946.     }
  947.     /* Find vobu */
  948.     while( (int)p_vts->vts_vobu_admap->vobu_start_sectors[i_vobu] <= i_block )
  949.     {
  950.         i_vobu++;
  951.     }
  952.     /* Find sub_cell */
  953.     while( p_vts->vts_c_adt->cell_adr_table[i_sub_cell].start_sector <
  954.            p_vts->vts_vobu_admap->vobu_start_sectors[i_vobu-1] )
  955.     {
  956.         i_sub_cell++;
  957.     }
  958. #if 1
  959.     msg_Dbg( p_demux, "cell %d i_sub_cell %d chapter %d vobu %d "
  960.              "cell_sector %d vobu_sector %d sub_cell_sector %d",
  961.              i_cell, i_sub_cell, i_chapter, i_vobu,
  962.              p_sys->p_cur_pgc->cell_playback[i_cell].first_sector,
  963.              p_vts->vts_vobu_admap->vobu_start_sectors[i_vobu],
  964.              p_vts->vts_c_adt->cell_adr_table[i_sub_cell - 1].start_sector);
  965. #endif
  966.     p_sys->i_cur_block = i_block;
  967.     p_sys->i_next_vobu = p_vts->vts_vobu_admap->vobu_start_sectors[i_vobu];
  968.     p_sys->i_pack_len = p_sys->i_next_vobu - i_block;
  969.     p_sys->i_cur_cell = i_cell;
  970.     p_sys->i_chapter = i_chapter;
  971.     DvdReadFindCell( p_demux );
  972. #undef p_vts
  973. #undef p_pgc
  974.     return;
  975. }
  976. /*****************************************************************************
  977.  * DvdReadHandleDSI
  978.  *****************************************************************************/
  979. static void DvdReadHandleDSI( demux_t *p_demux, uint8_t *p_data )
  980. {
  981.     demux_sys_t *p_sys = p_demux->p_sys;
  982.     navRead_DSI( &p_sys->dsi_pack, &p_data[DSI_START_BYTE] );
  983.     /*
  984.      * Determine where we go next.  These values are the ones we mostly
  985.      * care about.
  986.      */
  987.     p_sys->i_cur_block = p_sys->dsi_pack.dsi_gi.nv_pck_lbn;
  988.     p_sys->i_pack_len = p_sys->dsi_pack.dsi_gi.vobu_ea;
  989.     /*
  990.      * Store the timecodes so we can get the current time
  991.      */
  992.     p_sys->i_title_cur_time = (mtime_t) (p_sys->dsi_pack.dsi_gi.nv_pck_scr / 90 * 1000);
  993.     p_sys->i_cell_cur_time = (mtime_t) dvdtime_to_time( &p_sys->dsi_pack.dsi_gi.c_eltm, 0 );
  994.     /*
  995.      * If we're not at the end of this cell, we can determine the next
  996.      * VOBU to display using the VOBU_SRI information section of the
  997.      * DSI.  Using this value correctly follows the current angle,
  998.      * avoiding the doubled scenes in The Matrix, and makes our life
  999.      * really happy.
  1000.      */
  1001.     p_sys->i_next_vobu = p_sys->i_cur_block +
  1002.         ( p_sys->dsi_pack.vobu_sri.next_vobu & 0x7fffffff );
  1003.     if( p_sys->dsi_pack.vobu_sri.next_vobu != SRI_END_OF_CELL
  1004.         && p_sys->i_angle > 1 )
  1005.     {
  1006.         switch( ( p_sys->dsi_pack.sml_pbi.category & 0xf000 ) >> 12 )
  1007.         {
  1008.         case 0x4:
  1009.             /* Interleaved unit with no angle */
  1010.             if( p_sys->dsi_pack.sml_pbi.ilvu_sa != 0 )
  1011.             {
  1012.                 p_sys->i_next_vobu = p_sys->i_cur_block +
  1013.                     p_sys->dsi_pack.sml_pbi.ilvu_sa;
  1014.                 p_sys->i_pack_len = p_sys->dsi_pack.sml_pbi.ilvu_ea;
  1015.             }
  1016.             else
  1017.             {
  1018.                 p_sys->i_next_vobu = p_sys->i_cur_block +
  1019.                     p_sys->dsi_pack.dsi_gi.vobu_ea + 1;
  1020.             }
  1021.             break;
  1022.         case 0x5:
  1023.             /* vobu is end of ilvu */
  1024.             if( p_sys->dsi_pack.sml_agli.data[p_sys->i_angle-1].address )
  1025.             {
  1026.                 p_sys->i_next_vobu = p_sys->i_cur_block +
  1027.                     p_sys->dsi_pack.sml_agli.data[p_sys->i_angle-1].address;
  1028.                 p_sys->i_pack_len = p_sys->dsi_pack.sml_pbi.ilvu_ea;
  1029.                 break;
  1030.             }
  1031.         case 0x6:
  1032.             /* vobu is beginning of ilvu */
  1033.         case 0x9:
  1034.             /* next scr is 0 */
  1035.         case 0xa:
  1036.             /* entering interleaved section */
  1037.         case 0x8:
  1038.             /* non interleaved cells in interleaved section */
  1039.         default:
  1040.             p_sys->i_next_vobu = p_sys->i_cur_block +
  1041.                 ( p_sys->dsi_pack.vobu_sri.next_vobu & 0x7fffffff );
  1042.             break;
  1043.         }
  1044.     }
  1045.     else if( p_sys->dsi_pack.vobu_sri.next_vobu == SRI_END_OF_CELL )
  1046.     {
  1047.         p_sys->i_cur_cell = p_sys->i_next_cell;
  1048.         /* End of title */
  1049.         if( p_sys->i_cur_cell >= p_sys->p_cur_pgc->nr_of_cells ) return;
  1050.         DvdReadFindCell( p_demux );
  1051.         p_sys->i_next_vobu =
  1052.             p_sys->p_cur_pgc->cell_playback[p_sys->i_cur_cell].first_sector;
  1053.         p_sys->i_cell_duration = (mtime_t)dvdtime_to_time( &p_sys->p_cur_pgc->cell_playback[p_sys->i_cur_cell].playback_time, 0 );
  1054.     }
  1055. #if 0
  1056.     msg_Dbg( p_demux, "scr %d lbn 0x%02x vobu_ea %d vob_id %d c_id %d c_time %lld",
  1057.              p_sys->dsi_pack.dsi_gi.nv_pck_scr,
  1058.              p_sys->dsi_pack.dsi_gi.nv_pck_lbn,
  1059.              p_sys->dsi_pack.dsi_gi.vobu_ea,
  1060.              p_sys->dsi_pack.dsi_gi.vobu_vob_idn,
  1061.              p_sys->dsi_pack.dsi_gi.vobu_c_idn,
  1062.              dvdtime_to_time( &p_sys->dsi_pack.dsi_gi.c_eltm, 0 ) );
  1063.     msg_Dbg( p_demux, "cell duration: %lld",
  1064.              (mtime_t)dvdtime_to_time( &p_sys->p_cur_pgc->cell_playback[p_sys->i_cur_cell].playback_time, 0 ) );
  1065.     msg_Dbg( p_demux, "cat 0x%02x ilvu_ea %d ilvu_sa %d size %d",
  1066.              p_sys->dsi_pack.sml_pbi.category,
  1067.              p_sys->dsi_pack.sml_pbi.ilvu_ea,
  1068.              p_sys->dsi_pack.sml_pbi.ilvu_sa,
  1069.              p_sys->dsi_pack.sml_pbi.size );
  1070.     msg_Dbg( p_demux, "next_vobu %d next_ilvu1 %d next_ilvu2 %d",
  1071.              p_sys->dsi_pack.vobu_sri.next_vobu & 0x7fffffff,
  1072.              p_sys->dsi_pack.sml_agli.data[ p_sys->i_angle - 1 ].address,
  1073.              p_sys->dsi_pack.sml_agli.data[ p_sys->i_angle ].address);
  1074. #endif
  1075. }
  1076. /*****************************************************************************
  1077.  * DvdReadFindCell
  1078.  *****************************************************************************/
  1079. static void DvdReadFindCell( demux_t *p_demux )
  1080. {
  1081.     demux_sys_t *p_sys = p_demux->p_sys;
  1082.     pgc_t *p_pgc;
  1083.     int   pgc_id, pgn;
  1084.     int   i = 0;
  1085. #define cell p_sys->p_cur_pgc->cell_playback
  1086.     if( cell[p_sys->i_cur_cell].block_type == BLOCK_TYPE_ANGLE_BLOCK )
  1087.     {
  1088.         p_sys->i_cur_cell += p_sys->i_angle - 1;
  1089.         while( cell[p_sys->i_cur_cell+i].block_mode != BLOCK_MODE_LAST_CELL )
  1090.         {
  1091.             i++;
  1092.         }
  1093.         p_sys->i_next_cell = p_sys->i_cur_cell + i + 1;
  1094.     }
  1095.     else
  1096.     {
  1097.         p_sys->i_next_cell = p_sys->i_cur_cell + 1;
  1098.     }
  1099. #undef cell
  1100.     if( p_sys->i_chapter + 1 >= p_sys->i_chapters ) return;
  1101.     pgc_id = p_sys->p_vts_file->vts_ptt_srpt->title[
  1102.                 p_sys->i_ttn - 1].ptt[p_sys->i_chapter + 1].pgcn;
  1103.     pgn = p_sys->p_vts_file->vts_ptt_srpt->title[
  1104.               p_sys->i_ttn - 1].ptt[p_sys->i_chapter + 1].pgn;
  1105.     p_pgc = p_sys->p_vts_file->vts_pgcit->pgci_srp[pgc_id - 1].pgc;
  1106.     if( p_sys->i_cur_cell >= p_pgc->program_map[pgn - 1] - 1 )
  1107.     {
  1108.         p_sys->i_chapter++;
  1109.         if( p_sys->i_chapter < p_sys->i_chapters &&
  1110.             p_demux->info.i_seekpoint != p_sys->i_chapter )
  1111.         {
  1112.             p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT;
  1113.             p_demux->info.i_seekpoint = p_sys->i_chapter;
  1114.         }
  1115.     }
  1116. }
  1117. /*****************************************************************************
  1118.  * DemuxTitles: get the titles/chapters structure
  1119.  *****************************************************************************/
  1120. static void DemuxTitles( demux_t *p_demux, int *pi_angle )
  1121. {
  1122.     demux_sys_t *p_sys = p_demux->p_sys;
  1123.     input_title_t *t;
  1124.     seekpoint_t *s;
  1125.     int32_t i_titles;
  1126.     int i;
  1127.     /* Find out number of titles/chapters */
  1128. #define tt_srpt p_sys->p_vmg_file->tt_srpt
  1129.     i_titles = tt_srpt->nr_of_srpts;
  1130.     msg_Dbg( p_demux, "number of titles: %d", i_titles );
  1131.     for( i = 0; i < i_titles; i++ )
  1132.     {
  1133.         int32_t i_chapters = 0;
  1134.         int j;
  1135.         i_chapters = tt_srpt->title[i].nr_of_ptts;
  1136.         msg_Dbg( p_demux, "title %d has %d chapters", i, i_chapters );
  1137.         t = vlc_input_title_New();
  1138.         for( j = 0; j < __MAX( i_chapters, 1 ); j++ )
  1139.         {
  1140.             s = vlc_seekpoint_New();
  1141.             TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
  1142.         }
  1143.         TAB_APPEND( p_sys->i_titles, p_sys->titles, t );
  1144.     }
  1145. #undef tt_srpt
  1146. }