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