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