]> git.sesse.net Git - vlc/blob - plugins/dvd/input_dvd.c
-better handling of angles: you should be able to change on the fly now
[vlc] / plugins / dvd / input_dvd.c
1 /*****************************************************************************
2  * input_dvd.c: DVD raw reading plugin.
3  * ---
4  * This plugins should handle all the known specificities of the DVD format,
5  * especially the 2048 bytes logical block size.
6  * It depends on:
7  *  -input_netlist used to read packets
8  *  -dvd_ifo for ifo parsing and analyse
9  *  -dvd_css for unscrambling
10  *  -dvd_udf to find files
11  *****************************************************************************
12  * Copyright (C) 1998-2001 VideoLAN
13  * $Id: input_dvd.c,v 1.49 2001/04/22 00:08:25 stef Exp $
14  *
15  * Author: Stéphane Borel <stef@via.ecp.fr>
16  *
17  * This program is free software; you can redistribute it and/or modify
18  * it under the terms of the GNU General Public License as published by
19  * the Free Software Foundation; either version 2 of the License, or
20  * (at your option) any later version.
21  * 
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU General Public License for more details.
26  *
27  * You should have received a copy of the GNU General Public License
28  * along with this program; if not, write to the Free Software
29  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
30  *****************************************************************************/
31
32 /*****************************************************************************
33  * Preamble
34  *****************************************************************************/
35 #include "defs.h"
36
37 #ifdef HAVE_CSS
38 #define MODULE_NAME dvd
39 #else /* HAVE_CSS */
40 #define MODULE_NAME dvdnocss
41 #endif /* HAVE_CSS */
42 #include "modules_inner.h"
43
44 #include <stdio.h>
45 #include <stdlib.h>
46 #include <unistd.h>
47 #include <netinet/in.h>
48
49 #include <fcntl.h>
50 #include <sys/types.h>
51 #include <sys/uio.h>
52
53 #include <string.h>
54 #include <errno.h>
55
56 #include "config.h"
57 #include "common.h"
58 #include "threads.h"
59 #include "mtime.h"
60 #include "tests.h"
61
62 #include "intf_msg.h"
63
64 #include "main.h"
65
66 #include "stream_control.h"
67 #include "input_ext-intf.h"
68 #include "input_ext-dec.h"
69
70 #include "input.h"
71
72 #include "dvd_netlist.h"
73 #include "dvd_ifo.h"
74 #include "dvd_css.h"
75 #include "input_dvd.h"
76 #include "mpeg_system.h"
77
78 #include "debug.h"
79
80 #include "modules.h"
81
82 /*****************************************************************************
83  * Local tables
84  *****************************************************************************/
85 static struct
86 {
87     char    p_code[3];
88     char    p_lang_long[20];
89 }
90
91 lang_tbl[] =
92 {
93     /* The ISO 639 language codes.
94      * Language names with * prefix are not spelled in their own language 
95      */
96     { "  ", "Not Specified" },
97     { "aa", "*Afar" },
98     { "ab", "*Abkhazian" },
99     { "af", "*Afrikaans" },
100     { "am", "*Amharic" },
101     { "ar", "*Arabic" },
102     { "as", "*Assamese" },
103     { "ay", "*Aymara" },
104     { "az", "*Azerbaijani" },
105     { "ba", "*Bashkir" },
106     { "be", "*Byelorussian" },
107     { "bg", "*Bulgarian" },
108     { "bh", "*Bihari" },
109     { "bi", "*Bislama" },
110     { "bn", "*Bengali; Bangla" },
111     { "bo", "*Tibetan" },
112     { "br", "*Breton" },
113     { "ca", "*Catalan" },
114     { "co", "*Corsican" },
115     { "cs", "*Czech(Ceske)" },
116     { "cy", "*Welsh" },
117     { "da", "Dansk" },
118     { "de", "Deutsch" },
119     { "dz", "*Bhutani" },
120     { "el", "*Greek" },
121     { "en", "English" },
122     { "eo", "*Esperanto" },
123     { "es", "Espanol" },
124     { "et", "*Estonian" },
125     { "eu", "*Basque" },
126     { "fa", "*Persian" },
127     { "fi", "Suomi" },
128     { "fj", "*Fiji" },
129     { "fo", "*Faroese" },
130     { "fr", "Francais" },
131     { "fy", "*Frisian" },
132     { "ga", "*Irish" },
133     { "gd", "*Scots Gaelic" },
134     { "gl", "*Galician" },
135     { "gn", "*Guarani" },
136     { "gu", "*Gujarati" },
137     { "ha", "*Hausa" },
138     { "he", "*Hebrew" },                                      /* formerly iw */
139     { "hi", "*Hindi" },
140     { "hr", "Hrvatski" },                                        /* Croatian */
141     { "hu", "Magyar" },
142     { "hy", "*Armenian" },
143     { "ia", "*Interlingua" },
144     { "id", "*Indonesian" },                                  /* formerly in */
145     { "ie", "*Interlingue" },
146     { "ik", "*Inupiak" },
147     { "in", "*Indonesian" },                               /* replaced by id */
148     { "is", "Islenska" },
149     { "it", "Italiano" },
150     { "iu", "*Inuktitut" },
151     { "iw", "*Hebrew" },                                   /* replaced by he */
152     { "ja", "*Japanese" },
153     { "ji", "*Yiddish" },                                  /* replaced by yi */
154     { "jw", "*Javanese" },
155     { "ka", "*Georgian" },
156     { "kk", "*Kazakh" },
157     { "kl", "*Greenlandic" },
158     { "km", "*Cambodian" },
159     { "kn", "*Kannada" },
160     { "ko", "*Korean" },
161     { "ks", "*Kashmiri" },
162     { "ku", "*Kurdish" },
163     { "ky", "*Kirghiz" },
164     { "la", "*Latin" },
165     { "ln", "*Lingala" },
166     { "lo", "*Laothian" },
167     { "lt", "*Lithuanian" },
168     { "lv", "*Latvian, Lettish" },
169     { "mg", "*Malagasy" },
170     { "mi", "*Maori" },
171     { "mk", "*Macedonian" },
172     { "ml", "*Malayalam" },
173     { "mn", "*Mongolian" },
174     { "mo", "*Moldavian" },
175     { "mr", "*Marathi" },
176     { "ms", "*Malay" },
177     { "mt", "*Maltese" },
178     { "my", "*Burmese" },
179     { "na", "*Nauru" },
180     { "ne", "*Nepali" },
181     { "nl", "Nederlands" },
182     { "no", "Norsk" },
183     { "oc", "*Occitan" },
184     { "om", "*(Afan) Oromo" },
185     { "or", "*Oriya" },
186     { "pa", "*Punjabi" },
187     { "pl", "*Polish" },
188     { "ps", "*Pashto, Pushto" },
189     { "pt", "Portugues" },
190     { "qu", "*Quechua" },
191     { "rm", "*Rhaeto-Romance" },
192     { "rn", "*Kirundi" },
193     { "ro", "*Romanian"  },
194     { "ru", "*Russian" },
195     { "rw", "*Kinyarwanda" },
196     { "sa", "*Sanskrit" },
197     { "sd", "*Sindhi" },
198     { "sg", "*Sangho" },
199     { "sh", "*Serbo-Croatian" },
200     { "si", "*Sinhalese" },
201     { "sk", "*Slovak" },
202     { "sl", "*Slovenian" },
203     { "sm", "*Samoan" },
204     { "sn", "*Shona"  },
205     { "so", "*Somali" },
206     { "sq", "*Albanian" },
207     { "sr", "*Serbian" },
208     { "ss", "*Siswati" },
209     { "st", "*Sesotho" },
210     { "su", "*Sundanese" },
211     { "sv", "Svenska" },
212     { "sw", "*Swahili" },
213     { "ta", "*Tamil" },
214     { "te", "*Telugu" },
215     { "tg", "*Tajik" },
216     { "th", "*Thai" },
217     { "ti", "*Tigrinya" },
218     { "tk", "*Turkmen" },
219     { "tl", "*Tagalog" },
220     { "tn", "*Setswana" },
221     { "to", "*Tonga" },
222     { "tr", "*Turkish" },
223     { "ts", "*Tsonga" },
224     { "tt", "*Tatar" },
225     { "tw", "*Twi" },
226     { "ug", "*Uighur" },
227     { "uk", "*Ukrainian" },
228     { "ur", "*Urdu" },
229     { "uz", "*Uzbek" },
230     { "vi", "*Vietnamese" },
231     { "vo", "*Volapuk" },
232     { "wo", "*Wolof" },
233     { "xh", "*Xhosa" },
234     { "yi", "*Yiddish" },                                     /* formerly ji */
235     { "yo", "*Yoruba" },
236     { "za", "*Zhuang" },
237     { "zh", "*Chinese" },
238     { "zu", "*Zulu" },
239     { "\0", "" }
240 };
241
242 /*****************************************************************************
243  * Local prototypes
244  *****************************************************************************/
245 /* called from outside */
246 static int  DVDProbe    ( probedata_t *p_data );
247 static void DVDInit     ( struct input_thread_s * );
248 static void DVDEnd      ( struct input_thread_s * );
249 static int  DVDSetArea  ( struct input_thread_s *, struct input_area_s * );
250 static int  DVDRead     ( struct input_thread_s *, data_packet_t ** );
251 static void DVDSeek     ( struct input_thread_s *, off_t );
252 static int  DVDRewind   ( struct input_thread_s * );
253
254 /* called only inside */
255 static char * Language( u16 );
256 static int  DVDChooseAngle( thread_dvd_data_t * );
257 static int  DVDFindCell( thread_dvd_data_t * );
258 static int  DVDFindSector( thread_dvd_data_t * );
259 static int  DVDChapterSelect( thread_dvd_data_t *, int );
260
261 /*****************************************************************************
262  * Functions exported as capabilities. They are declared as static so that
263  * we don't pollute the namespace too much.
264  *****************************************************************************/
265 void _M( input_getfunctions )( function_list_t * p_function_list )
266 {
267 #define input p_function_list->functions.input
268     p_function_list->pf_probe = DVDProbe;
269     input.pf_init             = DVDInit;
270     input.pf_open             = input_FileOpen;
271     input.pf_close            = input_FileClose;
272     input.pf_end              = DVDEnd;
273     input.pf_read             = DVDRead;
274     input.pf_set_area         = DVDSetArea;
275     input.pf_demux            = input_DemuxPS;
276     input.pf_new_packet       = DVDNewPacket;
277     input.pf_new_pes          = DVDNewPES;
278     input.pf_delete_packet    = DVDDeletePacket;
279     input.pf_delete_pes       = DVDDeletePES;
280     input.pf_rewind           = DVDRewind;
281     input.pf_seek             = DVDSeek;
282 #undef input
283 }
284
285 /*
286  * Local tools to decode some data in ifo
287  */
288
289 /*****************************************************************************
290  * Language: gives the long language name from the two-letters ISO-639 code
291  *****************************************************************************/
292 static char * Language( u16 i_code )
293 {
294     int     i = 0;
295
296     while( memcmp( lang_tbl[i].p_code, &i_code, 2 ) &&
297            lang_tbl[i].p_lang_long[0] )
298     {
299         i++;
300     }
301
302     return lang_tbl[i].p_lang_long;
303 }
304
305 /*
306  * Data reading functions
307  */
308
309 /*****************************************************************************
310  * DVDProbe: verifies that the stream is a PS stream
311  *****************************************************************************/
312 static int DVDProbe( probedata_t *p_data )
313 {
314     input_thread_t * p_input = (input_thread_t *)p_data;
315
316     char * psz_name = p_input->p_source;
317     int i_handle;
318     int i_score = 5;
319
320     if( TestMethod( INPUT_METHOD_VAR, "dvd" ) )
321     {
322 #ifdef HAVE_CSS
323         return( 999 );
324 #else /* HAVE_CSS */
325         return( 998 );
326 #endif /* HAVE_CSS */
327     }
328
329     if( ( strlen(psz_name) > 4 ) && !strncasecmp( psz_name, "dvd:", 4 ) )
330     {
331         /* If the user specified "dvd:" then it's probably a DVD */
332 #ifdef HAVE_CSS
333         i_score = 100;
334 #else /* HAVE_CSS */
335         i_score = 90;
336 #endif /* HAVE_CSS */
337         psz_name += 4;
338     }
339
340     i_handle = open( psz_name, 0 );
341     if( i_handle == -1 )
342     {
343         return( 0 );
344     }
345     close( i_handle );
346
347     return( i_score );
348 }
349
350 /*****************************************************************************
351  * DVDInit: initializes DVD structures
352  *****************************************************************************/
353 static void DVDInit( input_thread_t * p_input )
354 {
355     thread_dvd_data_t *  p_dvd;
356     input_area_t *       p_area;
357     int                  i_title;
358     int                  i_chapter;
359     int                  i;
360
361     /* I don't want DVDs to start playing immediately */
362 //    p_input->stream.i_new_status = PAUSE_S;
363
364     p_dvd = malloc( sizeof(thread_dvd_data_t) );
365     if( p_dvd == NULL )
366     {
367         intf_ErrMsg( "dvd error: out of memory" );
368         p_input->b_error = 1;
369         return;
370     }
371
372     p_input->p_plugin_data = (void *)p_dvd;
373     p_input->p_method_data = NULL;
374
375     p_dvd->i_fd = p_input->i_handle;
376
377     /* reading several block once seems to cause lock-up
378      * when using input_ToggleES
379      * who wrote thez damn buggy piece of shit ??? --stef */
380     p_dvd->i_block_once = 1;//32;
381     p_input->i_read_once = 8;//128;
382
383     i = CSSTest( p_input->i_handle );
384
385     if( i < 0 )
386     {
387         free( p_dvd );
388         p_input->b_error = 1;
389         return;
390     }
391
392     p_dvd->b_encrypted = i;
393
394     lseek( p_input->i_handle, 0, SEEK_SET );
395
396     /* Reading structures initialisation */
397     p_input->p_method_data =
398         DVDNetlistInit( 2048, 8192, 2048, DVD_LB_SIZE, p_dvd->i_block_once );
399     intf_WarnMsg( 2, "dvd info: netlist initialized" );
400
401     /* Ifo allocation & initialisation */
402     if( IfoCreate( p_dvd ) < 0 )
403     {
404         intf_ErrMsg( "dvd error: allcation error in ifo" );
405         p_input->b_error = 1;
406         return;
407     }
408
409     if( IfoInit( p_dvd->p_ifo ) < 0 )
410     {
411         intf_ErrMsg( "dvd error: fatal failure in ifo" );
412         free( p_dvd );
413         p_input->b_error = 1;
414         return;
415     }
416
417     /* CSS initialisation */
418     if( p_dvd->b_encrypted )
419     {
420         p_dvd->p_css = malloc( sizeof(css_t) );
421         if( p_dvd->p_css == NULL )
422         {
423             intf_ErrMsg( "dvd error: couldn't create css structure" );
424             free( p_dvd );
425             p_input->b_error = 1;
426             return;
427         }
428
429         p_dvd->p_css->i_agid = 0;
430
431         if( CSSInit( p_input->i_handle, p_dvd->p_css ) < 0 )
432         {
433             intf_ErrMsg( "dvd error: fatal failure in css" );
434             free( p_dvd->p_css );
435             free( p_dvd );
436             p_input->b_error = 1;
437             return;
438         }
439
440         intf_WarnMsg( 2, "dvd info: css initialized" );
441     }
442
443     /* Set stream and area data */
444     vlc_mutex_lock( &p_input->stream.stream_lock );
445
446     /* Initialize ES structures */
447     input_InitStream( p_input, sizeof( stream_ps_data_t ) );
448
449     /* disc input method */
450     p_input->stream.i_method = INPUT_METHOD_DVD;
451
452 #define title_inf p_dvd->p_ifo->vmg.title_inf
453     intf_WarnMsg( 2, "dvd info: number of titles: %d", title_inf.i_title_nb );
454
455 #define area p_input->stream.pp_areas
456     /* We start from 1 here since the default area 0
457      * is reserved for video_ts.vob */
458     for( i = 1 ; i <= title_inf.i_title_nb ; i++ )
459     {
460         input_AddArea( p_input );
461
462         /* Titles are Program Chains */
463         area[i]->i_id = i;
464
465         /* Absolute start offset and size 
466          * We can only set that with vts ifo, so we do it during the
467          * first call to DVDSetArea */
468         area[i]->i_start = 0;
469         area[i]->i_size = 0;
470
471         /* Number of chapters */
472         area[i]->i_part_nb = title_inf.p_attr[i-1].i_chapter_nb;
473         area[i]->i_part = 1;
474
475         /* Number of angles */
476         area[i]->i_angle_nb = 0;
477         area[i]->i_angle = 1;
478
479         /* Offset to vts_i_0.ifo */
480         area[i]->i_plugin_data = p_dvd->p_ifo->i_off +
481                        ( title_inf.p_attr[i-1].i_start_sector * DVD_LB_SIZE );
482     }   
483 #undef area
484
485     /* Get requested title - if none try the first title */
486     i_title = main_GetIntVariable( INPUT_TITLE_VAR, 1 );
487     if( i_title <= 0 || i_title > title_inf.i_title_nb )
488     {
489         i_title = 1;
490     }
491
492 #undef title_inf
493
494     /* Get requested chapter - if none defaults to first one */
495     i_chapter = main_GetIntVariable( INPUT_CHAPTER_VAR, 1 );
496     if( i_chapter <= 0 )
497     {
498         i_chapter = 1;
499     }
500
501     p_input->stream.pp_areas[i_title]->i_part = i_chapter;
502
503     p_area = p_input->stream.pp_areas[i_title];
504
505     vlc_mutex_unlock( &p_input->stream.stream_lock );
506
507     /* set title, chapter, audio and subpic */
508     DVDSetArea( p_input, p_area );
509
510     return;
511 }
512
513 /*****************************************************************************
514  * DVDEnd: frees unused data
515  *****************************************************************************/
516 static void DVDEnd( input_thread_t * p_input )
517 {
518     thread_dvd_data_t *     p_dvd;
519     dvd_netlist_t *         p_netlist;
520
521     p_dvd = (thread_dvd_data_t*)p_input->p_plugin_data;
522     p_netlist = (dvd_netlist_t *)p_input->p_method_data;
523
524     if( p_dvd->b_encrypted )
525     {
526         free( p_dvd->p_css );
527     }
528
529     IfoDestroy( p_dvd->p_ifo );
530     free( p_dvd );
531     DVDNetlistEnd( p_netlist );
532 }
533
534 /*****************************************************************************
535  * DVDSetArea: initialize input data for title x, chapter y.
536  * It should be called for each user navigation request, and to change
537  * audio or sub-picture streams.
538  * ---
539  * Take care that i_title starts from 0 (vmg) and i_chapter start from 1.
540  * i_audio, i_spu start from 1 ; 0 means off.
541  * A negative value for an argument means it does not change
542  *****************************************************************************/
543 static int DVDSetArea( input_thread_t * p_input, input_area_t * p_area )
544 {
545     thread_dvd_data_t *  p_dvd;
546     es_descriptor_t *    p_es;
547     int                  i_audio;
548     int                  i_spu;
549     u16                  i_id;
550     u8                   i_ac3;
551     u8                   i_mpeg;
552     u8                   i_sub_pic;
553     u8                   i;
554     int                  j;
555     boolean_t            b_last;
556
557     p_dvd = (thread_dvd_data_t*)p_input->p_plugin_data;
558
559     vlc_mutex_lock( &p_input->stream.stream_lock );
560
561     if( p_area != p_input->stream.p_selected_area )
562     {
563
564         /*
565          *  We have to load all title information
566          */
567         /* Change the default area */
568         p_input->stream.p_selected_area =
569                     p_input->stream.pp_areas[p_area->i_id];
570
571 //        vlc_mutex_unlock( &p_input->stream.stream_lock );
572
573         /* title number: it is not vts nb!,
574          * it is what appears in the interface list */
575         p_dvd->i_title = p_area->i_id;
576         p_dvd->p_ifo->i_title = p_dvd->i_title;
577
578         /* uodate title environnement variable so that we don't
579          * loop on the same title forever */
580         main_PutIntVariable( INPUT_TITLE_VAR, p_dvd->i_title + 1 );
581
582         /* ifo vts */
583         if( IfoTitleSet( p_dvd->p_ifo ) < 0 )
584         {
585             intf_ErrMsg( "dvd error: fatal error in vts ifo" );
586             free( p_dvd );
587             p_input->b_error = 1;
588             return -1;
589         }
590
591 #define vmg p_dvd->p_ifo->vmg
592 #define vts p_dvd->p_ifo->vts
593         /* title position inside the selected vts */
594         p_dvd->i_vts_title =
595                     vmg.title_inf.p_attr[p_dvd->i_title-1].i_title_num;
596         p_dvd->i_title_id =
597           vts.title_inf.p_title_start[p_dvd->i_vts_title-1].i_title_id;
598
599         intf_WarnMsg( 1, "dvd: title %d vts_title %d pgc %d",
600                         p_dvd->i_title,
601                         p_dvd->i_vts_title,
602                         p_dvd->i_title_id );
603
604         /* css title key for current vts */
605         if( p_dvd->b_encrypted )
606         {
607             /* this one is vts number */
608             p_dvd->p_css->i_title =
609                     vmg.title_inf.p_attr[p_dvd->i_title-1].i_title_set_num;
610             p_dvd->p_css->i_title_pos =
611                     vts.i_pos +
612                     vts.manager_inf.i_title_vob_start_sector * DVD_LB_SIZE;
613
614             j = CSSGetKey( p_input->i_handle, p_dvd->p_css );
615             if( j < 0 )
616             {
617                 intf_ErrMsg( "dvd error: fatal error in vts css key" );
618                 free( p_dvd );
619                 p_input->b_error = 1;
620                 return -1;
621             }
622             else if( j > 0 )
623             {
624                 intf_ErrMsg( "dvd error: css decryption unavailable" );
625                 free( p_dvd );
626                 p_input->b_error = 1;
627                 return -1;
628             }
629         }
630
631         /*
632          * Angle management
633          */
634         p_dvd->i_angle_nb = vmg.title_inf.p_attr[p_dvd->i_title-1].i_angle_nb;
635         p_dvd->i_angle = main_GetIntVariable( INPUT_ANGLE_VAR, 1 );
636         if( ( p_dvd->i_angle <= 0 ) || p_dvd->i_angle > p_dvd->i_angle_nb )
637         {
638             p_dvd->i_angle = 1;
639         }
640     
641         /*
642          * Set selected title start and size
643          */
644         
645         /* title set offset */
646         p_dvd->i_title_start = vts.i_pos + DVD_LB_SIZE *
647                       (off_t)( vts.manager_inf.i_title_vob_start_sector );
648
649         /* last video cell */
650         p_dvd->i_cell = 0;
651         p_dvd->i_prg_cell = -1 +
652             vts.title_unit.p_title[p_dvd->i_title_id-1].title.i_cell_nb;
653
654         if( DVDFindCell( p_dvd ) < 0 )
655         {
656             intf_ErrMsg( "dvd error: can't find title end" );
657             p_input->b_error = 1;
658             return -1;
659         }
660
661         /* temporary hack to fix size in some dvds */
662         if( p_dvd->i_cell >= vts.cell_inf.i_cell_nb )
663         {
664             p_dvd->i_cell = vts.cell_inf.i_cell_nb - 1;
665         }
666         
667                         
668         p_dvd->i_sector = 0;
669         p_dvd->i_size = DVD_LB_SIZE *
670           (off_t)( vts.cell_inf.p_cell_map[p_dvd->i_cell].i_end_sector );
671         intf_WarnMsg( 2, "dvd info: stream size 1: %lld @ %d", p_dvd->i_size,
672                       vts.cell_inf.p_cell_map[p_dvd->i_cell].i_end_sector );
673         
674         if( DVDChapterSelect( p_dvd, 1 ) < 0 )
675         {
676             intf_ErrMsg( "dvd error: can't find first chapter" );
677             p_input->b_error = 1;
678             return -1;
679         }
680
681         p_dvd->i_size -= (off_t)( p_dvd->i_sector + 1 ) *DVD_LB_SIZE;
682
683         intf_WarnMsg( 2, "dvd info: title: %d", p_dvd->i_title );
684         intf_WarnMsg( 2, "dvd info: vobstart at: %lld", p_dvd->i_start );
685         intf_WarnMsg( 2, "dvd info: stream size: %lld", p_dvd->i_size );
686         intf_WarnMsg( 2, "dvd info: number of chapters: %d",
687                    vmg.title_inf.p_attr[p_dvd->i_title-1].i_chapter_nb );
688         intf_WarnMsg( 2, "dvd info: number of angles: %d", p_dvd->i_angle_nb );
689
690 //        vlc_mutex_lock( &p_input->stream.stream_lock );
691
692         /* Area definition */
693         p_input->stream.p_selected_area->i_start = p_dvd->i_start;
694         p_input->stream.p_selected_area->i_size = p_dvd->i_size;
695         p_input->stream.p_selected_area->i_angle_nb = p_dvd->i_angle_nb;
696         p_input->stream.p_selected_area->i_angle = p_dvd->i_angle;
697
698         /*
699          * Destroy obsolete ES by reinitializing program 0
700          * and find all ES in title with ifo data
701          */
702         if( p_input->stream.pp_programs != NULL )
703         {
704             /* We don't use input_EndStream here since
705              * we keep area structures */
706
707             for( i = 0 ; i < p_input->stream.i_selected_es_number ; i++ )
708             {
709                 input_UnselectES( p_input, p_input->stream.pp_selected_es[i] );
710             }
711
712             input_DelProgram( p_input, p_input->stream.pp_programs[0] );
713
714             p_input->stream.pp_selected_es = NULL;
715             p_input->stream.i_selected_es_number = 0;
716         }
717
718         input_AddProgram( p_input, 0, sizeof( stream_ps_data_t ) );
719
720         /* No PSM to read in DVD mode, we already have all information */
721         p_input->stream.pp_programs[0]->b_is_ok = 1;
722         p_input->stream.pp_programs[0]->i_synchro_state = SYNCHRO_START;
723
724         p_es = NULL;
725
726         /* ES 0 -> video MPEG2 */
727         p_es = input_AddES( p_input, p_input->stream.pp_programs[0], 0xe0, 0 );
728         p_es->i_stream_id = 0xe0;
729         p_es->i_type = MPEG2_VIDEO_ES;
730         p_es->i_cat = VIDEO_ES;
731         intf_WarnMsg( 1, "dvd info: video mpeg2 stream" );
732         if( p_main->b_video )
733         {
734             input_SelectES( p_input, p_es );
735         }
736
737         /* Audio ES, in the order they appear in .ifo */
738             
739         i_ac3 = 0x7f;
740         i_mpeg = 0xc0;
741
742         for( i = 1 ; i <= vts.manager_inf.i_audio_nb ; i++ )
743         {
744
745 #ifdef DEBUG
746         intf_WarnMsg( 1, "Audio %d: %x %x %x %x %x %x %x %x %x %x %x %x", i,
747             vts.manager_inf.p_audio_attr[i-1].i_num_channels,
748             vts.manager_inf.p_audio_attr[i-1].i_coding_mode,
749             vts.manager_inf.p_audio_attr[i-1].i_multichannel_extension,
750             vts.manager_inf.p_audio_attr[i-1].i_type,
751             vts.manager_inf.p_audio_attr[i-1].i_appl_mode,
752             vts.manager_inf.p_audio_attr[i-1].i_foo,
753             vts.manager_inf.p_audio_attr[i-1].i_test,
754             vts.manager_inf.p_audio_attr[i-1].i_bar,
755             vts.manager_inf.p_audio_attr[i-1].i_quantization,
756             vts.manager_inf.p_audio_attr[i-1].i_sample_freq,
757             vts.manager_inf.p_audio_attr[i-1].i_lang_code,
758             vts.manager_inf.p_audio_attr[i-1].i_caption );
759 #endif
760
761             switch( vts.manager_inf.p_audio_attr[i-1].i_coding_mode )
762             {
763             case 0x00:              /* AC3 */
764                 i_id = ( ( i_ac3 + i ) << 8 ) | 0xbd;
765                 p_es = input_AddES( p_input,
766                                     p_input->stream.pp_programs[0], i_id, 0 );
767                 p_es->i_stream_id = 0xbd;
768                 p_es->i_type = AC3_AUDIO_ES;
769                 p_es->b_audio = 1;
770                 p_es->i_cat = AUDIO_ES;
771                 strcpy( p_es->psz_desc, Language( hton16(
772                     vts.manager_inf.p_audio_attr[i-1].i_lang_code ) ) ); 
773                 strcat( p_es->psz_desc, " (ac3)" );
774
775                 intf_WarnMsg( 1, "dvd info: audio stream %d %s\t(0x%x)",
776                               i, p_es->psz_desc, i_id );
777
778                 break;
779             case 0x02:
780             case 0x03:              /* MPEG audio */
781                 i_id = 0xbf + i;
782                 p_es = input_AddES( p_input,
783                                     p_input->stream.pp_programs[0], i_id, 0 );
784                 p_es->i_stream_id = i_id;
785                 p_es->i_type = MPEG2_AUDIO_ES;
786                 p_es->b_audio = 1;
787                 p_es->i_cat = AUDIO_ES;
788                 strcpy( p_es->psz_desc, Language( hton16(
789                     vts.manager_inf.p_audio_attr[i-1].i_lang_code ) ) ); 
790                 strcat( p_es->psz_desc, " (mpeg)" );
791
792                 intf_WarnMsg( 1, "dvd info: audio stream %d %s\t(0x%x)",
793                               i, p_es->psz_desc, i_id );
794
795                 break;
796             case 0x04:              /* LPCM */
797                 i_id = 0;
798                 intf_ErrMsg( "dvd warning: LPCM audio not handled yet" );
799                 break;
800             case 0x06:              /* DTS */
801                 i_id = 0;
802                 i_ac3--;
803                 intf_ErrMsg( "dvd warning: DTS audio not handled yet" );
804                 break;
805             default:
806                 i_id = 0;
807                 intf_ErrMsg( "dvd warning: unknown audio type %.2x",
808                          vts.manager_inf.p_audio_attr[i-1].i_coding_mode );
809             }
810         
811         }
812     
813         /* Sub Picture ES */
814            
815         b_last = 0;
816         i_sub_pic = 0x20;
817         for( i = 1 ; i <= vts.manager_inf.i_spu_nb; i++ )
818         {
819             if( !b_last )
820             {
821                 i_id = ( i_sub_pic++ << 8 ) | 0xbd;
822                 p_es = input_AddES( p_input,
823                                     p_input->stream.pp_programs[0], i_id, 0 );
824                 p_es->i_stream_id = 0xbd;
825                 p_es->i_type = DVD_SPU_ES;
826                 p_es->i_cat = SPU_ES;
827                 strcpy( p_es->psz_desc, Language( hton16(
828                     vts.manager_inf.p_spu_attr[i-1].i_lang_code ) ) ); 
829                 intf_WarnMsg( 1, "dvd info: spu stream %d %s\t(0x%x)",
830                               i, p_es->psz_desc, i_id );
831     
832                 /* The before the last spu has a 0x0 prefix */
833                 b_last =
834                     ( vts.manager_inf.p_spu_attr[i].i_prefix == 0 ); 
835             }
836         }
837
838         if( p_main->b_audio )
839         {
840             /* For audio: first one if none or a not existing one specified */
841             i_audio = main_GetIntVariable( INPUT_CHANNEL_VAR, 1 );
842             if( i_audio < 0 || i_audio > vts.manager_inf.i_audio_nb )
843             {
844                 main_PutIntVariable( INPUT_CHANNEL_VAR, 1 );
845                 i_audio = 1;
846             }
847             if( i_audio > 0 && vts.manager_inf.i_audio_nb > 0 )
848             {
849                 input_SelectES( p_input, p_input->stream.pp_es[i_audio] );
850             }
851         }
852
853         if( p_main->b_video )
854         {
855             /* for spu, default is none */
856             i_spu = main_GetIntVariable( INPUT_SUBTITLE_VAR, 0 );
857             if( i_spu < 0 || i_spu > vts.manager_inf.i_spu_nb )
858             {
859                 main_PutIntVariable( INPUT_SUBTITLE_VAR, 0 );
860                 i_spu = 0;
861             }
862             if( i_spu > 0 && vts.manager_inf.i_spu_nb > 0 )
863             {
864                 i_spu += vts.manager_inf.i_audio_nb;
865                 input_SelectES( p_input, p_input->stream.pp_es[i_spu] );
866             }
867         }
868     } /* i_title >= 0 */
869     else
870     {
871         p_area = p_input->stream.p_selected_area;
872     }
873 #undef vts
874 #undef vmg
875
876     /*
877      * Chapter selection
878      */
879
880     
881     if( p_area->i_part != p_dvd->i_chapter )
882     {
883         if( ( p_area->i_part > 0 ) &&
884             ( p_area->i_part <= p_area->i_part_nb ))
885         {
886             if( DVDChapterSelect( p_dvd, p_area->i_part ) < 0 )
887             {
888                 intf_ErrMsg( "dvd error: can't set chapter in area" );
889                 p_input->b_error = 1;
890                 return -1;
891             }
892     
893             p_input->stream.p_selected_area->i_tell = p_dvd->i_start -
894                                                       p_area->i_start;
895             p_input->stream.p_selected_area->i_part = p_dvd->i_chapter;
896     
897             intf_WarnMsg( 2, "dvd info: chapter %d start at: %lld",
898                                         p_area->i_part, p_area->i_tell );
899         }
900         else
901         {
902             p_area->i_part = 1;
903             p_dvd->i_chapter = 1;
904         }
905     }
906 #define title \
907     p_dvd->p_ifo->vts.title_unit.p_title[p_dvd->i_title_id-1].title
908
909     if( p_area->i_angle != p_dvd->i_angle )
910     {
911         if( title.p_cell_play[p_dvd->i_prg_cell].i_category & 0xf000 )
912         {
913             if( ( p_area->i_angle - p_dvd->i_angle ) < 0 )
914             {
915                 p_dvd->i_cell = 0;
916             }
917             p_dvd->i_prg_cell += ( p_area->i_angle - p_dvd->i_angle );
918             p_dvd->i_angle = p_area->i_angle;
919     
920             DVDFindSector( p_dvd );
921             p_dvd->i_cell += p_dvd->i_angle_cell;
922         }
923         else
924         {
925             p_dvd->i_angle = p_area->i_angle;
926         }
927
928         intf_WarnMsg( 2, "dvd info: angle %d selected", p_area->i_angle );
929     }
930
931     vlc_mutex_unlock( &p_input->stream.stream_lock );
932
933     return 0;
934 }
935
936
937 /*****************************************************************************
938  * DVDRead: reads data packets into the netlist.
939  *****************************************************************************
940  * Returns -1 in case of error, 0 if everything went well, and 1 in case of
941  * EOF.
942  *****************************************************************************/
943 static int DVDRead( input_thread_t * p_input,
944                     data_packet_t ** pp_packets )
945 {
946     thread_dvd_data_t *     p_dvd;
947     dvd_netlist_t *         p_netlist;
948     struct iovec *          p_vec;
949     struct data_packet_s *  pp_data[p_input->i_read_once];
950     u8 *                    pi_cur;
951     int                     i_block_once;
952     int                     i_packet_size;
953     int                     i_iovec;
954     int                     i_packet;
955     int                     i_pos;
956     int                     i_read_bytes;
957     int                     i_read_blocks;
958     off_t                   i_off;
959     boolean_t               b_eof;
960
961     p_dvd = (thread_dvd_data_t *)p_input->p_plugin_data;
962     p_netlist = (dvd_netlist_t *)p_input->p_method_data;
963
964     /* Get an iovec pointer */
965     if( ( p_vec = DVDGetiovec( p_netlist ) ) == NULL )
966     {
967         intf_ErrMsg( "dvd error: can't get iovec" );
968         return -1;
969     }
970
971     i_block_once = p_dvd->i_end_sector - p_dvd->i_sector + 1;
972
973     /* Get the position of the next cell if we're at cell end */
974     if( i_block_once <= 0 )
975     {
976         int     i_angle;
977
978         p_dvd->i_cell++;
979         p_dvd->i_angle_cell++;
980
981         /* Find cell index in adress map */
982         if( DVDFindSector( p_dvd ) < 0 )
983         {
984             pp_packets[0] = NULL;
985             intf_ErrMsg( "dvd error: can't find next cell" );
986             return 1;
987         }
988
989         /* Position the fd pointer on the right address */
990         i_off = lseek( p_dvd->i_fd,
991                        p_dvd->i_title_start +
992                        (off_t)( p_dvd->i_sector ) *DVD_LB_SIZE, SEEK_SET );
993
994         /* update chapter : it will be easier when we have navigation
995          * ES support */
996         if( title.p_cell_play[p_dvd->i_prg_cell].i_category & 0xf000 )
997         {
998             i_angle = p_dvd->i_angle - 1;
999         }
1000         else
1001         {
1002             i_angle = 0;
1003         }
1004         if( title.chapter_map.pi_start_cell[p_dvd->i_chapter-1] <=
1005             ( p_dvd->i_prg_cell - i_angle ) )
1006         {
1007             p_dvd->i_chapter++;
1008         }
1009
1010         vlc_mutex_lock( &p_input->stream.stream_lock );
1011
1012         p_input->stream.p_selected_area->i_tell = i_off -
1013                                     p_input->stream.p_selected_area->i_start;
1014         p_input->stream.p_selected_area->i_part = p_dvd->i_chapter;
1015
1016         /* the synchro has to be reinitialized when we change cell */
1017         p_input->stream.pp_programs[0]->i_synchro_state = SYNCHRO_START;
1018
1019         vlc_mutex_unlock( &p_input->stream.stream_lock );
1020
1021         i_block_once = p_dvd->i_end_sector - p_dvd->i_sector + 1;
1022     }
1023
1024     /* the number of blocks read is the maw between the requested
1025      * value and the leaving block in the cell */
1026     if( i_block_once > p_dvd->i_block_once )
1027     {
1028         i_block_once = p_dvd->i_block_once;
1029     }
1030 //intf_WarnMsg( 2, "Sector: 0x%x Read: %d Chapter: %d", p_dvd->i_sector, i_block_once, p_dvd->i_chapter );
1031
1032     p_netlist->i_read_once = i_block_once;
1033
1034     /* Reads from DVD */
1035     i_read_bytes = readv( p_dvd->i_fd, p_vec, i_block_once );
1036     i_read_blocks = ( i_read_bytes + 0x7ff ) >> 11;
1037
1038     /* Update netlist indexes */
1039     DVDMviovec( p_netlist, i_read_blocks, pp_data );
1040
1041     /* Update global position */
1042     p_dvd->i_sector += i_read_blocks;
1043
1044     i_packet = 0;
1045
1046     /* Read headers to compute payload length */
1047     for( i_iovec = 0 ; i_iovec < i_read_blocks ; i_iovec++ )
1048     {
1049         if( p_dvd->b_encrypted )
1050         {
1051             CSSDescrambleSector( p_dvd->p_css->pi_title_key, 
1052                                  p_vec[i_iovec].iov_base );
1053             ((u8*)(p_vec[i_iovec].iov_base))[0x14] &= 0x8F;
1054         }
1055
1056         i_pos = 0;
1057
1058         while( i_pos < p_netlist->i_buffer_size )
1059         {
1060             pi_cur = (u8*)(p_vec[i_iovec].iov_base + i_pos);
1061
1062             /*default header */
1063             if( U32_AT( pi_cur ) != 0x1BA )
1064             {
1065                 /* That's the case for all packets, except pack header. */
1066                 i_packet_size = U16_AT( pi_cur + 4 );
1067                 pp_packets[i_packet] = DVDNewPtr( p_netlist );
1068             }
1069             else
1070             {
1071                 /* Pack header. */
1072                 if( ( pi_cur[4] & 0xC0 ) == 0x40 )
1073                 {
1074                     /* MPEG-2 */
1075                     i_packet_size = 8;
1076                 }
1077                 else if( ( pi_cur[4] & 0xF0 ) == 0x20 )
1078                 {
1079                     /* MPEG-1 */
1080                     i_packet_size = 6;
1081                 }
1082                 else
1083                 {
1084                     intf_ErrMsg( "Unable to determine stream type" );
1085                     return( -1 );
1086                 }
1087
1088                 pp_packets[i_packet] = pp_data[i_iovec];
1089
1090             }
1091
1092             (*pp_data[i_iovec]->pi_refcount)++;
1093
1094             pp_packets[i_packet]->pi_refcount = pp_data[i_iovec]->pi_refcount;
1095
1096             pp_packets[i_packet]->p_buffer = pp_data[i_iovec]->p_buffer;
1097
1098             pp_packets[i_packet]->p_payload_start =
1099                     pp_packets[i_packet]->p_buffer + i_pos;
1100
1101             pp_packets[i_packet]->p_payload_end =
1102                     pp_packets[i_packet]->p_payload_start + i_packet_size + 6;
1103
1104             pp_packets[i_packet]->p_next = NULL;
1105             pp_packets[i_packet]->b_discard_payload = 0;
1106
1107             i_packet++;
1108             i_pos += i_packet_size + 6;
1109         }
1110     }
1111
1112     pp_packets[i_packet] = NULL;
1113
1114     vlc_mutex_lock( &p_input->stream.stream_lock );
1115
1116     p_input->stream.p_selected_area->i_tell += i_read_bytes;
1117     b_eof = !( p_input->stream.p_selected_area->i_tell < p_dvd->i_size );
1118
1119     vlc_mutex_unlock( &p_input->stream.stream_lock );
1120
1121     if( ( i_read_blocks == i_block_once ) && ( !b_eof ) )
1122     {
1123         return 0;
1124     }
1125     else
1126     {
1127         return 1;
1128     }
1129 }
1130
1131 /*****************************************************************************
1132  * DVDRewind : reads a stream backward
1133  *****************************************************************************/
1134 static int DVDRewind( input_thread_t * p_input )
1135 {
1136     return( -1 );
1137 }
1138
1139 /*****************************************************************************
1140  * DVDSeek : Goes to a given position on the stream ; this one is used by the 
1141  * input and translate chronological position from input to logical postion
1142  * on the device
1143  * ---
1144  * The lock should be taken before calling this function.
1145  *****************************************************************************/
1146 static void DVDSeek( input_thread_t * p_input, off_t i_off )
1147 {
1148     thread_dvd_data_t *     p_dvd;
1149     off_t                   i_pos;
1150     int                     i_prg_cell;
1151     int                     i_cell;
1152     int                     i_chapter;
1153     int                     i_angle;
1154     
1155     p_dvd = ( thread_dvd_data_t * )p_input->p_plugin_data;
1156
1157     /* we have to take care of offset of beginning of title */
1158     i_pos = i_off + p_input->stream.p_selected_area->i_start
1159                   - p_dvd->i_title_start;
1160
1161     /* update navigation data */
1162     p_dvd->i_sector = i_pos >> 11;
1163
1164     i_prg_cell = 0;
1165     i_chapter = 1;
1166
1167     /* parse vobu address map to find program cell */
1168     while( title.p_cell_play[i_prg_cell].i_end_sector < p_dvd->i_sector  )
1169     {
1170         i_prg_cell++;
1171     }
1172
1173     p_dvd->i_prg_cell = i_prg_cell;
1174
1175     if( DVDChooseAngle( p_dvd ) < 0 )
1176     {
1177         p_input->b_error = 1;
1178         return;        
1179     }
1180
1181     p_dvd->i_cell = 0;
1182
1183     /* Find first title cell which is inside program cell */
1184     if( DVDFindCell( p_dvd ) < 0 )
1185     {
1186         /* no following cell : we're at eof */
1187         intf_ErrMsg( "dvd error: cell seeking failed" );
1188         p_input->b_error = 1;
1189         return;
1190     }
1191
1192     i_cell = p_dvd->i_cell;
1193
1194 #define cell p_dvd->p_ifo->vts.cell_inf.p_cell_map[i_cell]
1195     /* parse cell address map to find title cell containing sector */
1196     while( cell.i_end_sector < p_dvd->i_sector )
1197     {
1198         i_cell++;
1199     }
1200
1201     p_dvd->i_cell = i_cell;
1202
1203     /* if we're inside a multi-angle zone, we have to choose i_sector
1204      * in the current angle ; we can't do it all the time since cells
1205      * can be very wide out of such zones */
1206     if( title.p_cell_play[p_dvd->i_prg_cell].i_category & 0xf000 )
1207     {
1208         p_dvd->i_sector = MAX(
1209                 cell.i_start_sector,
1210                 title.p_cell_play[p_dvd->i_prg_cell].i_start_sector );
1211     }
1212
1213     p_dvd->i_end_sector = MIN(
1214             cell.i_end_sector,
1215             title.p_cell_play[p_dvd->i_prg_cell].i_end_sector );
1216 #undef cell
1217     /* update chapter */
1218     if( title.p_cell_play[p_dvd->i_prg_cell].i_category & 0xf000 )
1219     {
1220         i_angle = p_dvd->i_angle - 1;
1221     }
1222     else
1223     {
1224         i_angle = 0;
1225     }
1226     while( title.chapter_map.pi_start_cell[i_chapter-1] <=
1227            ( p_dvd->i_prg_cell - i_angle ) )
1228     {
1229         i_chapter++;
1230     }
1231
1232     p_dvd->i_chapter = i_chapter;
1233     p_input->stream.p_selected_area->i_part = p_dvd->i_chapter;
1234
1235     p_input->stream.p_selected_area->i_tell =
1236                 lseek( p_dvd->i_fd, p_dvd->i_title_start +
1237                        (off_t)( p_dvd->i_sector ) *DVD_LB_SIZE, SEEK_SET ) -
1238                 p_input->stream.p_selected_area->i_start;
1239 /*
1240     intf_WarnMsg( 1, "Program Cell: %d Cell: %d Chapter: %d",
1241                      p_dvd->i_prg_cell, p_dvd->i_cell, p_dvd->i_chapter );
1242 */
1243
1244     return;
1245 }
1246
1247 #define cell  p_dvd->p_ifo->vts.cell_inf
1248                 
1249 /*****************************************************************************
1250  * DVDFindCell: adjust the title cell index with the program cell
1251  *****************************************************************************/
1252 static int DVDFindCell( thread_dvd_data_t * p_dvd )
1253 {
1254     int                 i_cell;
1255     int                 i_index;
1256
1257     i_cell = p_dvd->i_cell;
1258     i_index = p_dvd->i_prg_cell;
1259
1260     if( i_cell >= cell.i_cell_nb )
1261     {
1262         return -1;
1263     }
1264
1265     while( ( ( title.p_cell_pos[i_index].i_vob_id !=
1266                    cell.p_cell_map[i_cell].i_vob_id ) ||
1267       ( title.p_cell_pos[i_index].i_cell_id !=
1268                    cell.p_cell_map[i_cell].i_cell_id ) ) &&
1269            ( i_cell < cell.i_cell_nb - 1 ) )
1270     {
1271         i_cell++;
1272     }
1273
1274 /*
1275 intf_WarnMsg( 1, "FindCell: i_cell %d i_index %d found %d nb %d",
1276                     p_dvd->i_cell,
1277                     p_dvd->i_prg_cell,
1278                     i_cell,
1279                     cell.i_cell_nb );
1280 */
1281
1282     p_dvd->i_cell = i_cell;
1283
1284     return 0;    
1285 }
1286
1287 #undef cell
1288
1289 /*****************************************************************************
1290  * DVDFindSector: find cell index in adress map from index in
1291  * information table program map and give corresponding sectors.
1292  *****************************************************************************/
1293 static int DVDFindSector( thread_dvd_data_t * p_dvd )
1294 {
1295
1296     if( p_dvd->i_sector > title.p_cell_play[p_dvd->i_prg_cell].i_end_sector )
1297     {
1298         p_dvd->i_prg_cell++;
1299
1300         if( DVDChooseAngle( p_dvd ) < 0 )
1301         {
1302             return -1;
1303         }
1304     }
1305
1306     if( DVDFindCell( p_dvd ) < 0 )
1307     {
1308         intf_ErrMsg( "dvd error: can't find sector" );
1309         return -1;
1310     }
1311
1312     /* Find start and end sectors of new cell */
1313     p_dvd->i_sector = MAX(
1314          p_dvd->p_ifo->vts.cell_inf.p_cell_map[p_dvd->i_cell].i_start_sector,
1315          title.p_cell_play[p_dvd->i_prg_cell].i_start_sector );
1316     p_dvd->i_end_sector = MIN(
1317          p_dvd->p_ifo->vts.cell_inf.p_cell_map[p_dvd->i_cell].i_end_sector,
1318          title.p_cell_play[p_dvd->i_prg_cell].i_end_sector );
1319
1320 /*
1321     intf_WarnMsg( 1, "cell: %d sector1: 0x%x end1: 0x%x\n"
1322                    "index: %d sector2: 0x%x end2: 0x%x\n"
1323                    "category: 0x%x ilvu end: 0x%x vobu start 0x%x", 
1324         p_dvd->i_cell,
1325         p_dvd->p_ifo->vts.cell_inf.p_cell_map[p_dvd->i_cell].i_start_sector,
1326         p_dvd->p_ifo->vts.cell_inf.p_cell_map[p_dvd->i_cell].i_end_sector,
1327         p_dvd->i_prg_cell,
1328         title.p_cell_play[p_dvd->i_prg_cell].i_start_sector,
1329         title.p_cell_play[p_dvd->i_prg_cell].i_end_sector,
1330         title.p_cell_play[p_dvd->i_prg_cell].i_category, 
1331         title.p_cell_play[p_dvd->i_prg_cell].i_first_ilvu_vobu_esector,
1332         title.p_cell_play[p_dvd->i_prg_cell].i_last_vobu_start_sector );
1333 */
1334
1335     return 0;
1336 }
1337
1338 /*****************************************************************************
1339  * DVDChapterSelect: find the cell corresponding to requested chapter
1340  *****************************************************************************/
1341 static int DVDChapterSelect( thread_dvd_data_t * p_dvd, int i_chapter )
1342 {
1343
1344     /* Find cell index in Program chain for current chapter */
1345     p_dvd->i_prg_cell = title.chapter_map.pi_start_cell[i_chapter-1] - 1;
1346     p_dvd->i_cell = 0;
1347     p_dvd->i_sector = 0;
1348
1349     DVDChooseAngle( p_dvd );
1350
1351     /* Search for cell_index in cell adress_table and initialize start sector */
1352     if( DVDFindSector( p_dvd ) < 0 )
1353     {
1354         intf_ErrMsg( "dvd error: can't select chapter" );
1355         return -1;
1356     }
1357
1358     /* start is : beginning of vts vobs + offset to vob x */
1359     p_dvd->i_start = p_dvd->i_title_start +
1360                      DVD_LB_SIZE * (off_t)( p_dvd->i_sector );
1361
1362     /* Position the fd pointer on the right address */
1363     p_dvd->i_start = lseek( p_dvd->i_fd, p_dvd->i_start, SEEK_SET );
1364
1365     p_dvd->i_chapter = i_chapter;
1366     return 0;
1367 }
1368
1369 /*****************************************************************************
1370  * DVDChooseAngle: select the cell corresponding to the selected angle
1371  *****************************************************************************/
1372 static int DVDChooseAngle( thread_dvd_data_t * p_dvd )
1373 {
1374     /* basic handling of angles */
1375     switch( ( ( title.p_cell_play[p_dvd->i_prg_cell].i_category & 0xf000 )
1376                     >> 12 ) )
1377     {
1378         /* we enter a muli-angle section */
1379         case 0x5:
1380             p_dvd->i_prg_cell += p_dvd->i_angle - 1;
1381             p_dvd->i_angle_cell = 0;
1382 //            intf_WarnMsg( 1, "dvd info: choosing angle %d", p_dvd->i_angle );
1383             break;
1384         /* we exit a multi-angle section */
1385         case 0x9:
1386         case 0xd:
1387             p_dvd->i_prg_cell += p_dvd->i_angle_nb - p_dvd->i_angle;
1388             break;
1389     }
1390
1391     return 0;
1392 }
1393
1394 #undef title