]> git.sesse.net Git - vlc/blob - plugins/dvd/input_dvd.c
-Fixed most of the bugs in gnome interface menus
[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.32 2001/03/15 00:37:04 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-css
39 #else /* HAVE_CSS */
40 #define MODULE_NAME dvd-nocss
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 static int  DVDProbe    ( probedata_t *p_data );
246 static int  DVDCheckCSS ( struct input_thread_s * );
247 static int  DVDRead     ( struct input_thread_s *, data_packet_t ** );
248 static void DVDInit     ( struct input_thread_s * );
249 static void DVDEnd      ( struct input_thread_s * );
250 static void DVDSeek     ( struct input_thread_s *, off_t );
251 static int  DVDSetArea  ( struct input_thread_s *, struct input_area_s * );
252 static int  DVDRewind   ( struct input_thread_s * );
253
254 /*****************************************************************************
255  * Functions exported as capabilities. They are declared as static so that
256  * we don't pollute the namespace too much.
257  *****************************************************************************/
258 void _M( input_getfunctions )( function_list_t * p_function_list )
259 {
260 #define input p_function_list->functions.input
261     p_function_list->pf_probe = DVDProbe;
262     input.pf_init             = DVDInit;
263     input.pf_open             = input_FileOpen;
264     input.pf_close            = input_FileClose;
265     input.pf_end              = DVDEnd;
266     input.pf_read             = DVDRead;
267     input.pf_set_area         = DVDSetArea;
268     input.pf_demux            = input_DemuxPS;
269     input.pf_new_packet       = DVDNewPacket;
270     input.pf_new_pes          = DVDNewPES;
271     input.pf_delete_packet    = DVDDeletePacket;
272     input.pf_delete_pes       = DVDDeletePES;
273     input.pf_rewind           = DVDRewind;
274     input.pf_seek             = DVDSeek;
275 #undef input
276 }
277
278 /*
279  * Local tools to decode some data in ifo
280  */
281
282 /*****************************************************************************
283  * Language: gives the long language name from the two-letters ISO-639 code
284  *****************************************************************************/
285 static char * Language( u16 i_code )
286 {
287     int     i = 0;
288
289     while( memcmp( lang_tbl[i].p_code, &i_code, 2 ) &&
290            lang_tbl[i].p_lang_long[0] )
291     {
292         i++;
293     }
294
295     return lang_tbl[i].p_lang_long;
296 }
297
298 /*
299  * Data reading functions
300  */
301
302 /*****************************************************************************
303  * DVDProbe: verifies that the stream is a PS stream
304  *****************************************************************************/
305 static int DVDProbe( probedata_t *p_data )
306 {
307     input_thread_t * p_input = (input_thread_t *)p_data;
308
309     char * psz_name = p_input->p_source;
310     int i_handle;
311     int i_score = 5;
312
313     if( TestMethod( INPUT_METHOD_VAR, "dvd" ) )
314     {
315 #ifdef HAVE_CSS
316         return( 999 );
317 #else /* HAVE_CSS */
318         return( 998 );
319 #endif /* HAVE_CSS */
320     }
321
322     if( ( strlen(psz_name) > 4 ) && !strncasecmp( psz_name, "dvd:", 4 ) )
323     {
324         /* If the user specified "dvd:" then it's probably a DVD */
325 #ifdef HAVE_CSS
326         i_score = 100;
327 #else /* HAVE_CSS */
328         i_score = 90;
329 #endif /* HAVE_CSS */
330         psz_name += 4;
331     }
332
333     i_handle = open( psz_name, 0 );
334     if( i_handle == -1 )
335     {
336         return( 0 );
337     }
338     close( i_handle );
339
340     return( i_score );
341 }
342
343 /*****************************************************************************
344  * DVDCheckCSS: check the stream
345  *****************************************************************************/
346 static int DVDCheckCSS( input_thread_t * p_input )
347 {
348     return CSSTest( p_input->i_handle );
349 }
350
351
352 /*****************************************************************************
353  * DVDFindSector: find cell index in adress map from index in
354  * information table program map and give corresponding sectors.
355  *****************************************************************************/
356 static int DVDFindSector( thread_dvd_data_t * p_dvd )
357 {
358     pgc_t *              p_pgc;
359     int                  i_cell;
360     int                  i_index;
361
362     p_pgc = &p_dvd->ifo.vts.pgci_ti.p_srp[p_dvd->i_vts_title-1].pgc;
363
364     i_index = p_dvd->i_prg_cell - 1;
365
366     do {
367         if( i_index++ > p_dvd->i_prg_cell )
368         {
369             return -1;
370         }
371         
372         i_cell = p_dvd->i_cell + 1;
373
374         while( ( ( p_pgc->p_cell_pos_inf[i_index].i_vob_id !=
375                    p_dvd->ifo.vts.c_adt.p_cell_inf[i_cell].i_vob_id ) ||
376                  ( p_pgc->p_cell_pos_inf[i_index].i_cell_id !=
377                    p_dvd->ifo.vts.c_adt.p_cell_inf[i_cell].i_cell_id ) ) &&
378                  ( i_cell < ( p_dvd->ifo.vts.c_adt.i_cell_nb ) ) )
379         {
380             i_cell++;
381         }
382
383     } while( i_cell == ( p_dvd->ifo.vts.c_adt.i_cell_nb ) );
384
385     p_dvd->i_cell = i_cell;
386     p_dvd->i_prg_cell = i_index;
387
388     /* Find start and end sectors of new cell */
389     p_dvd->i_sector = MAX(
390             p_dvd->ifo.vts.c_adt.p_cell_inf[i_cell].i_ssector,
391             p_pgc->p_cell_play_inf[i_index].i_entry_sector );
392     p_dvd->i_end_sector = MIN(
393             p_dvd->ifo.vts.c_adt.p_cell_inf[i_cell].i_esector,
394             p_pgc->p_cell_play_inf[i_index].i_lsector );
395
396 intf_WarnMsg( 3, "cell: %d index: %d sector1: %x sector2: %x end1: %x end2: %x", i_cell, i_index, p_dvd->ifo.vts.c_adt.p_cell_inf[i_cell].i_ssector, p_pgc->p_cell_play_inf[i_index].i_entry_sector, p_dvd->ifo.vts.c_adt.p_cell_inf[i_cell].i_esector,p_pgc->p_cell_play_inf[i_index].i_lsector  );
397
398     return 0;
399 }
400
401 /*****************************************************************************
402  * DVDChapterSelect: find the cell corresponding to requested chapter
403  * When called to find chapter 1, also sets title size and end.
404  *****************************************************************************/
405 static int DVDChapterSelect( thread_dvd_data_t * p_dvd, int i_chapter )
406 {
407     pgc_t *              p_pgc;
408
409     p_pgc = &p_dvd->ifo.vts.pgci_ti.p_srp[p_dvd->i_vts_title-1].pgc;
410
411     /* Find cell index in Program chain for current chapter */
412     p_dvd->i_prg_cell = p_pgc->prg_map.pi_entry_cell[i_chapter-1] - 1;
413     p_dvd->i_cell = -1;
414
415     /* Search for cell_index in cell adress_table */
416     DVDFindSector( p_dvd );
417
418     /* initialize  navigation parameters */
419     p_dvd->i_sector = p_dvd->ifo.vts.c_adt.p_cell_inf[p_dvd->i_cell].i_ssector;
420     p_dvd->i_end_sector =
421                       p_dvd->ifo.vts.c_adt.p_cell_inf[p_dvd->i_cell].i_esector;
422
423     /* start is : beginning of vts vobs + offset to vob x */
424     p_dvd->i_start = p_dvd->i_title_start +
425                      DVD_LB_SIZE * (off_t)( p_dvd->i_sector );
426
427     /* Position the fd pointer on the right address */
428     p_dvd->i_start = lseek( p_dvd->i_fd, p_dvd->i_start, SEEK_SET );
429
430     p_dvd->i_chapter = i_chapter;
431
432     return 0;
433 }
434
435 /*****************************************************************************
436  * DVDSetArea: initialize input data for title x, chapter y.
437  * It should be called for each user navigation request, and to change
438  * audio or sub-picture streams.
439  * ---
440  * Take care that i_title starts from 0 (vmg) and i_chapter start from 1.
441  * i_audio, i_spu start from 1 ; 0 means off.
442  * A negative value for an argument means it does not change
443  *****************************************************************************/
444 static int DVDSetArea( input_thread_t * p_input, input_area_t * p_area )
445 {
446     thread_dvd_data_t *  p_dvd;
447     es_descriptor_t *    p_es;
448     int                  i_nb;
449     u16                  i_id;
450     u8                   i_ac3;
451     u8                   i_mpeg;
452     u8                   i_sub_pic;
453     u8                   i;
454     boolean_t            b_last;
455
456     p_dvd = (thread_dvd_data_t*)p_input->p_plugin_data;
457
458     vlc_mutex_lock( &p_input->stream.stream_lock );
459
460     if( p_area != p_input->stream.p_selected_area )
461     {
462
463         /*
464          *  We have to load all title information
465          */
466         /* Change the default area */
467         p_input->stream.p_selected_area =
468                     p_input->stream.pp_areas[p_area->i_id];
469
470         /* title number: it is not vts nb! */
471         p_dvd->i_title = p_area->i_id;
472
473         /* title position inside the selected vts */
474         p_dvd->i_vts_title =
475                     p_dvd->ifo.vmg.ptt_srpt.p_tts[p_dvd->i_title-1].i_vts_ttn;
476
477         /* vts number */
478         p_dvd->ifo.i_title = p_dvd->i_title;
479
480         /* ifo vts */
481         IfoReadVTS( &(p_dvd->ifo) );
482         intf_WarnMsg( 2, "ifo info: vts initialized" );
483     
484         /* css title key for current vts */
485         if( p_dvd->b_encrypted )
486         {
487             p_dvd->p_css->i_title =
488                     p_dvd->ifo.vmg.ptt_srpt.p_tts[p_dvd->i_title-1].i_tts_nb;
489             p_dvd->p_css->i_title_pos =
490                     p_dvd->ifo.vts.i_pos +
491                     p_dvd->ifo.vts.mat.i_tt_vobs_ssector * DVD_LB_SIZE;
492             CSSGetKey( p_dvd->p_css );
493             intf_WarnMsg( 2, "css info: vts key initialized" );
494         }
495     
496         /*
497          * Set selected title start and size
498          */
499         
500         /* title set offset */
501         p_dvd->i_title_start = p_dvd->ifo.vts.i_pos + DVD_LB_SIZE *
502                       (off_t)( p_dvd->ifo.vts.mat.i_tt_vobs_ssector );
503
504         /* last video cell */
505         p_dvd->i_cell = -1;
506         p_dvd->i_prg_cell = -1 +
507             p_dvd->ifo.vts.pgci_ti.p_srp[p_dvd->i_vts_title-1].pgc.i_cell_nb;
508         DVDFindSector( p_dvd );
509
510         /* temporary hack to fix size in some dvds */
511         if( p_dvd->i_cell >= p_dvd->ifo.vts.c_adt.i_cell_nb )
512         {
513             p_dvd->i_cell = p_dvd->ifo.vts.c_adt.i_cell_nb - 1;
514         }
515
516         p_dvd->i_size = DVD_LB_SIZE *
517           (off_t)( p_dvd->ifo.vts.c_adt.p_cell_inf[p_dvd->i_cell].i_esector );
518
519         DVDChapterSelect( p_dvd, 1 );
520
521         p_dvd->i_size -= (off_t)( p_dvd->i_sector + 1 ) *DVD_LB_SIZE;
522
523         lseek( p_input->i_handle, p_dvd->i_start, SEEK_SET );
524
525
526         intf_WarnMsg( 2, "dvd info: title: %d", p_dvd->i_title );
527         intf_WarnMsg( 2, "dvd info: vobstart at: %lld", p_dvd->i_start );
528         intf_WarnMsg( 2, "dvd info: stream size: %lld", p_dvd->i_size );
529         intf_WarnMsg( 2, "dvd info: number of chapters: %d",
530                    p_dvd->ifo.vmg.ptt_srpt.p_tts[p_dvd->i_title-1].i_ptt_nb );
531
532 /*        intf_WarnMsg( 3, "last: %d index: %d", i_last_chapter, i_index );*/
533
534
535 /*        intf_WarnMsg( 3, "DVD: Cell: %d vob id: %d cell id: %d", i_end_cell, p_dvd->ifo.vts.c_adt.p_cell_inf[i_end_cell].i_vob_id, p_dvd->ifo.vts.c_adt.p_cell_inf[i_end_cell].i_cell_id );*/
536
537         /* Area definition */
538         p_input->stream.p_selected_area->i_start = p_dvd->i_start;
539         p_input->stream.p_selected_area->i_size = p_dvd->i_size;
540
541         /*
542          * Destroy obsolete ES by reinitializing program 0
543          * and find all ES in title with ifo data
544          */
545         if( p_input->stream.pp_programs != NULL )
546         {
547             /* We don't use input_EndStream here since
548              * we keep area structures */
549
550             for( i = 0 ; i < p_input->stream.i_selected_es_number ; i++ )
551             {
552                 input_UnselectES( p_input, p_input->stream.pp_selected_es[i] );
553             }
554
555             input_DelProgram( p_input, p_input->stream.pp_programs[0] );
556
557             free( p_input->stream.pp_selected_es );
558             p_input->stream.pp_selected_es = NULL;
559             p_input->stream.i_selected_es_number = 0;
560         }
561
562         input_AddProgram( p_input, 0, sizeof( stream_ps_data_t ) );
563
564         p_es = NULL;
565
566         /* ES 0 -> video MPEG2 */
567         p_es = input_AddES( p_input, p_input->stream.pp_programs[0], 0xe0, 0 );
568         p_es->i_stream_id = 0xe0;
569         p_es->i_type = MPEG2_VIDEO_ES;
570         input_SelectES( p_input, p_es );
571         intf_WarnMsg( 1, "dvd info: video MPEG2 stream" );
572
573     
574         /* Audio ES, in the order they appear in .ifo */
575         i_nb = p_dvd->ifo.vts.mat.i_audio_nb;
576     
577         i_ac3 = 0x7f;
578         i_mpeg = 0xc0;
579
580         for( i = 1 ; i <= i_nb ; i++ )
581         {
582
583 #if 0
584     fprintf( stderr, "Audio %d: %x %x %x %x %x %x %x %x %x %x %x %x\n", i,
585             p_dvd->ifo.vts.mat.p_audio_atrt[i-1].i_num_channels,
586             p_dvd->ifo.vts.mat.p_audio_atrt[i-1].i_coding_mode,
587             p_dvd->ifo.vts.mat.p_audio_atrt[i-1].i_multichannel_extension,
588             p_dvd->ifo.vts.mat.p_audio_atrt[i-1].i_type,
589             p_dvd->ifo.vts.mat.p_audio_atrt[i-1].i_appl_mode,
590             p_dvd->ifo.vts.mat.p_audio_atrt[i-1].i_foo,
591             p_dvd->ifo.vts.mat.p_audio_atrt[i-1].i_bar,
592             p_dvd->ifo.vts.mat.p_audio_atrt[i-1].i_appl_mode,
593             p_dvd->ifo.vts.mat.p_audio_atrt[i-1].i_quantization,
594             p_dvd->ifo.vts.mat.p_audio_atrt[i-1].i_sample_freq,
595             p_dvd->ifo.vts.mat.p_audio_atrt[i-1].i_lang_code,
596             p_dvd->ifo.vts.mat.p_audio_atrt[i-1].i_caption );
597 #endif
598
599             switch( p_dvd->ifo.vts.mat.p_audio_atrt[i-1].i_coding_mode )
600             {
601             case 0x00:              /* AC3 */
602                 i_id = ( ( i_ac3 + i ) << 8 ) | 0xbd;
603                 p_es = input_AddES( p_input,
604                                     p_input->stream.pp_programs[0], i_id, 0 );
605                 p_es->i_stream_id = 0xbd;
606                 p_es->i_type = AC3_AUDIO_ES;
607                 p_es->b_audio = 1;
608                 strcpy( p_es->psz_desc, Language( hton16(
609                     p_dvd->ifo.vts.mat.p_audio_atrt[i-1].i_lang_code ) ) ); 
610
611                 intf_WarnMsg( 1, "dvd info: audio stream %d %s\t(0x%x)",
612                               i, p_es->psz_desc, i_id );
613
614                 break;
615             case 0x02:
616             case 0x03:              /* MPEG audio */
617                 i_id = 0xbf + i;
618                 p_es = input_AddES( p_input,
619                                     p_input->stream.pp_programs[0], i_id, 0 );
620                 p_es->i_stream_id = i_id;
621                 p_es->i_type = MPEG2_AUDIO_ES;
622                 p_es->b_audio = 1;
623                 strcpy( p_es->psz_desc, Language( hton16(
624                     p_dvd->ifo.vts.mat.p_audio_atrt[i-1].i_lang_code ) ) ); 
625
626                 intf_WarnMsg( 1, "dvd info: audio stream %d %s\t(0x%x)",
627                               i, p_es->psz_desc, i_id );
628
629                 break;
630             case 0x04:              /* LPCM */
631                 i_id = 0;
632                 intf_ErrMsg( "dvd warning: LPCM audio not handled yet" );
633                 break;
634             case 0x06:              /* DTS */
635                 i_id = 0;
636                 i_ac3--;
637                 intf_ErrMsg( "dvd warning: DTS audio not handled yet" );
638                 break;
639             default:
640                 i_id = 0;
641                 intf_ErrMsg( "dvd warning: unknown audio type %.2x",
642                          p_dvd->ifo.vts.mat.p_audio_atrt[i-1].i_coding_mode );
643             }
644         
645         }
646     
647         /* Sub Picture ES */
648         i_nb = p_dvd->ifo.vts.mat.i_subpic_nb;
649     
650         b_last = 0;
651         i_sub_pic = 0x20;
652         for( i = 1 ; i <= i_nb ; i++ )
653         {
654             if( !b_last )
655             {
656                 i_id = ( i_sub_pic++ << 8 ) | 0xbd;
657                 p_es = input_AddES( p_input,
658                                     p_input->stream.pp_programs[0], i_id, 0 );
659                 p_es->i_stream_id = 0xbd;
660                 p_es->i_type = DVD_SPU_ES;
661                 p_es->b_spu = 1;
662                 strcpy( p_es->psz_desc, Language( hton16(
663                     p_dvd->ifo.vts.mat.p_subpic_atrt[i-1].i_lang_code ) ) ); 
664                 intf_WarnMsg( 1, "dvd info: spu stream %d %s\t(0x%x)",
665                               i, p_es->psz_desc, i_id );
666     
667                 /* The before the last spu has a 0x0 prefix */
668                 b_last =
669                     ( p_dvd->ifo.vts.mat.p_subpic_atrt[i].i_prefix == 0 ); 
670             }
671         }
672
673     } // i_title >= 0
674     else
675     {
676         p_area = p_input->stream.p_selected_area;
677     }
678
679     /*
680      * Chapter selection
681      */
682
683     if( ( p_area->i_part > 0 ) &&
684         ( p_area->i_part <= p_area->i_part_nb ) )
685     {
686         DVDChapterSelect( p_dvd, p_area->i_part );
687
688         p_input->stream.p_selected_area->i_tell = p_dvd->i_start -
689                                                   p_area->i_start;
690         p_input->stream.p_selected_area->i_part = p_dvd->i_chapter;
691
692         intf_WarnMsg( 2, "dvd info: chapter %d start at: %lld",
693                                     p_area->i_part, p_area->i_tell );
694     }
695
696     /* By default first audio stream and no spu */
697     input_SelectES( p_input, p_input->stream.pp_es[1] );
698
699     /* No PSM to read in DVD mode, we already have all information */
700     p_input->stream.pp_programs[0]->b_is_ok = 1;
701
702     vlc_mutex_unlock( &p_input->stream.stream_lock );
703
704     return 0;
705 }
706
707 /*****************************************************************************
708  * DVDInit: initializes DVD structures
709  *****************************************************************************/
710 static void DVDInit( input_thread_t * p_input )
711 {
712     thread_dvd_data_t *  p_dvd;
713     int                  i_title;
714     int                  i_chapter;
715     int                  i_audio;
716     int                  i_spu;
717     int                  i;
718
719     if( (p_dvd = malloc( sizeof(thread_dvd_data_t) )) == NULL )
720     {
721         intf_ErrMsg( "Out of memory" );
722         p_input->b_error = 1;
723         return;
724     }
725
726     p_input->p_plugin_data = (void *)p_dvd;
727     p_input->p_method_data = NULL;
728
729     p_dvd->i_fd = p_input->i_handle;
730
731     p_dvd->i_block_once = 1;
732     p_input->i_read_once = 8;
733
734     p_dvd->b_encrypted = DVDCheckCSS( p_input );
735
736     lseek( p_input->i_handle, 0, SEEK_SET );
737
738     /* Reading structures initialisation */
739     p_input->p_method_data =
740 //    DVDNetlistInit( 4096, 8192, 4096, DVD_LB_SIZE, p_dvd->i_block_once ); 
741     DVDNetlistInit( 8192, 16384, 16384, DVD_LB_SIZE, p_dvd->i_block_once ); 
742     intf_WarnMsg( 2, "dvd info: netlist initialized" );
743
744     /* Ifo initialisation */
745     p_dvd->ifo = IfoInit( p_input->i_handle );
746     intf_WarnMsg( 2, "ifo info: vmg initialized" );
747
748     /* CSS initialisation */
749     if( p_dvd->b_encrypted )
750     {
751         p_dvd->p_css = CSSInit( p_input->i_handle );
752
753         if( p_dvd->p_css == NULL )
754         {
755             intf_ErrMsg( "css error: fatal failure" );
756             p_input->b_error = 1;
757             return;
758         }
759
760         intf_WarnMsg( 2, "css info: initialized" );
761     }
762
763     /* Initialize ES structures */
764     input_InitStream( p_input, sizeof( stream_ps_data_t ) );
765
766     /* Set stream and area data */
767     vlc_mutex_lock( &p_input->stream.stream_lock );
768
769 #define srpt p_dvd->ifo.vmg.ptt_srpt
770     intf_WarnMsg( 2, "dvd info: number of titles: %d", srpt.i_ttu_nb );
771
772 #define area p_input->stream.pp_areas
773     /* We start from 1 here since area 0 is reserved for video_ts.vob */
774     for( i = 1 ; i <= srpt.i_ttu_nb ; i++ )
775     {
776         input_AddArea( p_input );
777
778         /* Should not be so simple eventually :
779          * are title Program Chains, or still something else ? */
780         area[i]->i_id = i;
781
782         /* Absolute start offset and size 
783          * We can only set that with vts ifo, so we do it during the
784          * first call to DVDSetArea */
785         area[i]->i_start = 0;
786         area[i]->i_size = 0;
787
788         /* Number of chapter */
789         area[i]->i_part_nb = srpt.p_tts[i-1].i_ptt_nb;
790         area[i]->i_part = 1;
791
792         /* Offset to vts_i_0.ifo */
793         area[i]->i_plugin_data = p_dvd->ifo.i_off +
794                                ( srpt.p_tts[i-1].i_ssector * DVD_LB_SIZE );
795     }   
796 #undef area
797
798     vlc_mutex_unlock( &p_input->stream.stream_lock );
799
800     /* Get requested title - if none try to find one where is the movie */
801     i_title = main_GetIntVariable( INPUT_TITLE_VAR, 1 );
802     if( i_title <= 0 || i_title > srpt.i_ttu_nb )
803     {
804         i_title = 1;
805     }
806 #undef srpt
807     /* Get requested chapter - if none defaults to first one */
808     i_chapter = main_GetIntVariable( INPUT_CHAPTER_VAR, 1 );
809     if( i_chapter <= 0 )
810     {
811         i_chapter = 1;
812     }
813
814     p_input->stream.pp_areas[i_title]->i_part = i_chapter;
815     DVDSetArea( p_input, p_input->stream.pp_areas[i_title] );
816
817     /* For audio: first one if none or a not existing one specified */
818     i_audio = main_GetIntVariable( INPUT_CHANNEL_VAR, 1 );
819     if( i_audio <= 0 )
820     {
821         main_PutIntVariable( INPUT_CHANNEL_VAR, 1 );
822         i_audio = 1;
823     }
824
825     input_ChangeES( p_input, p_input->stream.pp_es[i_audio], 1 );
826
827     i_spu = main_GetIntVariable( INPUT_SUBTITLE_VAR, 0 );
828     if( i_spu < 0 )
829     {
830         main_PutIntVariable( INPUT_CHANNEL_VAR, 1 );
831         i_spu = 0;
832     }
833
834 //    input_ChangeES( p_input, p_input->stream.pp_es[i_spu], 1 );
835
836
837     return;
838 }
839
840 /*****************************************************************************
841  * DVDEnd: frees unused data
842  *****************************************************************************/
843 static void DVDEnd( input_thread_t * p_input )
844 {
845     thread_dvd_data_t *     p_dvd;
846     dvd_netlist_t *         p_netlist;
847
848     p_dvd = (thread_dvd_data_t*)p_input->p_plugin_data;
849     p_netlist = (dvd_netlist_t *)p_input->p_method_data;
850
851     CSSEnd( p_dvd->p_css );
852 //    IfoEnd( p_dvd->p_ifo ) );
853     free( p_dvd );
854     DVDNetlistEnd( p_netlist );
855 }
856
857 /*****************************************************************************
858  * DVDRead: reads data packets into the netlist.
859  *****************************************************************************
860  * Returns -1 in case of error, 0 if everything went well, and 1 in case of
861  * EOF.
862  *****************************************************************************/
863 static int DVDRead( input_thread_t * p_input,
864                     data_packet_t ** pp_packets )
865 {
866     thread_dvd_data_t *     p_dvd;
867     dvd_netlist_t *         p_netlist;
868     pgc_t *                 p_pgc;
869     struct iovec *          p_vec;
870     struct data_packet_s *  pp_data[p_input->i_read_once];
871     u8 *                    pi_cur;
872     int                     i_packet_size;
873     int                     i_iovec;
874     int                     i_packet;
875     int                     i_pos;
876     int                     i_read_bytes;
877     int                     i_read_blocks;
878     int                     i_chapter;
879     off_t                   i_off;
880     boolean_t               b_eof;
881
882     p_dvd = (thread_dvd_data_t *)p_input->p_plugin_data;
883     p_netlist = (dvd_netlist_t *)p_input->p_method_data;
884     p_pgc = &p_dvd->ifo.vts.pgci_ti.p_srp[p_dvd->i_vts_title-1].pgc;
885
886     /* Get an iovec pointer */
887     if( ( p_vec = DVDGetiovec( p_netlist ) ) == NULL )
888     {
889         intf_ErrMsg( "DVD: read error" );
890         return -1;
891     }
892
893     /* Get the position of the next cell if we're at cell end */
894 #if 1
895     if( p_dvd->i_sector > p_dvd->i_end_sector )
896     {
897         /* Find cell index in adress map */
898         if( DVDFindSector( p_dvd ) < 0 )
899         {
900             pp_packets[0] = NULL;
901             intf_ErrMsg( "dvd error: can't find next cell" );
902             return 1;
903         }
904
905         /* Position the fd pointer on the right address */
906         i_off = lseek( p_dvd->i_fd,
907                        p_dvd->i_title_start +
908                        (off_t)( p_dvd->i_sector ) *DVD_LB_SIZE,
909                SEEK_SET );
910
911         i_chapter = 0;
912
913         /* update chapter */
914         while( p_pgc->prg_map.pi_entry_cell[i_chapter-1] - 1 <
915                p_dvd->i_prg_cell )
916         {
917             i_chapter++;
918         }
919
920         p_dvd->i_chapter = i_chapter;
921
922 //        vlc_mutex_lock( &p_input->stream.stream_lock );
923
924         p_input->stream.p_selected_area->i_tell = i_off -
925                                     p_input->stream.p_selected_area->i_start;
926         p_input->stream.p_selected_area->i_part = p_dvd->i_chapter;
927
928 //        vlc_mutex_unlock( &p_input->stream.stream_lock );
929     }
930
931 #endif
932     /* Reads from DVD */
933     i_read_bytes = readv( p_dvd->i_fd, p_vec, p_dvd->i_block_once );
934     i_read_blocks = ( i_read_bytes + 0x7ff ) >> 11;
935
936     /* Update netlist indexes */
937     DVDMviovec( p_netlist, i_read_blocks, pp_data );
938
939     /* Update global position */
940     p_dvd->i_sector += i_read_blocks;
941
942     i_packet = 0;
943
944     /* Read headers to compute payload length */
945     for( i_iovec = 0 ; i_iovec < i_read_blocks ; i_iovec++ )
946     {
947         if( p_dvd->b_encrypted )
948         {
949             CSSDescrambleSector( p_dvd->p_css->pi_title_key, 
950                                  p_vec[i_iovec].iov_base );
951             ((u8*)(p_vec[i_iovec].iov_base))[0x14] &= 0x8F;
952         }
953
954         i_pos = 0;
955
956         while( i_pos < p_netlist->i_buffer_size )
957         {
958             pi_cur = (u8*)(p_vec[i_iovec].iov_base + i_pos);
959
960             /*default header */
961             if( U32_AT( pi_cur ) != 0x1BA )
962             {
963                 /* That's the case for all packets, except pack header. */
964                 i_packet_size = U16_AT( pi_cur + 4 );
965                 pp_packets[i_packet] = DVDNewPtr( p_netlist );
966             }
967             else
968             {
969                 /* Pack header. */
970                 if( ( pi_cur[4] & 0xC0 ) == 0x40 )
971                 {
972                     /* MPEG-2 */
973                     i_packet_size = 8;
974                 }
975                 else if( ( pi_cur[4] & 0xF0 ) == 0x20 )
976                 {
977                     /* MPEG-1 */
978                     i_packet_size = 6;
979                 }
980                 else
981                 {
982                     intf_ErrMsg( "Unable to determine stream type" );
983                     return( -1 );
984                 }
985
986                 pp_packets[i_packet] = pp_data[i_iovec];
987
988             }
989
990             (*pp_data[i_iovec]->pi_refcount)++;
991
992             pp_packets[i_packet]->pi_refcount = pp_data[i_iovec]->pi_refcount;
993
994             pp_packets[i_packet]->p_buffer = pp_data[i_iovec]->p_buffer;
995
996             pp_packets[i_packet]->p_payload_start =
997                     pp_packets[i_packet]->p_buffer + i_pos;
998
999             pp_packets[i_packet]->p_payload_end =
1000                     pp_packets[i_packet]->p_payload_start + i_packet_size + 6;
1001
1002             i_packet++;
1003             i_pos += i_packet_size + 6;
1004         }
1005     }
1006
1007     pp_packets[i_packet] = NULL;
1008
1009 //    vlc_mutex_lock( &p_input->stream.stream_lock );
1010
1011     p_input->stream.p_selected_area->i_tell +=
1012                                         p_dvd->i_block_once *DVD_LB_SIZE;
1013     b_eof = p_input->stream.p_selected_area->i_tell < p_dvd->i_size ? 0 : 1;
1014
1015 //    vlc_mutex_unlock( &p_input->stream.stream_lock );
1016
1017     if( ( i_read_blocks == p_dvd->i_block_once ) && ( !b_eof ) )
1018     {
1019         return 0;
1020     }
1021     else
1022     {
1023         return 1;
1024     }
1025 }
1026
1027
1028 /*****************************************************************************
1029  * DVDRewind : reads a stream backward
1030  *****************************************************************************/
1031 static int DVDRewind( input_thread_t * p_input )
1032 {
1033     return( -1 );
1034 }
1035
1036 /*****************************************************************************
1037  * DVDSeek : Goes to a given position on the stream ; this one is used by the 
1038  * input and translate chronological position from input to logical postion
1039  * on the device
1040  * ---
1041  * The lock should be taken before calling this function.
1042  *****************************************************************************/
1043 static void DVDSeek( input_thread_t * p_input, off_t i_off )
1044 {
1045     thread_dvd_data_t *     p_dvd;
1046     pgc_t *                 p_pgc;
1047     off_t                   i_pos;
1048     int                     i_prg_cell;
1049     int                     i_cell;
1050     int                     i_chapter;
1051     
1052     p_dvd = ( thread_dvd_data_t * )p_input->p_plugin_data;
1053     p_pgc = &p_dvd->ifo.vts.pgci_ti.p_srp[p_dvd->i_vts_title-1].pgc;
1054
1055     /* update navigation data */
1056     p_dvd->i_sector = i_off >> 11;
1057
1058     i_prg_cell = 0;
1059     i_cell = 0;
1060     i_chapter = 1;
1061
1062     /* parse vobu address map to find program cell */
1063     while( p_pgc->p_cell_play_inf[i_prg_cell].i_lsector < p_dvd->i_sector  )
1064     {
1065         i_prg_cell++;
1066     }
1067     /* parse cell address map to find cell */
1068     while( p_dvd->ifo.vts.c_adt.p_cell_inf[i_cell].i_esector <=
1069            p_dvd->i_sector + 1 )
1070     {
1071         i_cell++;
1072     }
1073
1074     p_dvd->i_prg_cell = i_prg_cell;
1075     p_dvd->i_cell = i_cell - 1;             /* DVDFindSector will add one */
1076
1077     /* check coherence of data */
1078     DVDFindSector( p_dvd );
1079
1080     /* update chapter */
1081     while( p_pgc->prg_map.pi_entry_cell[i_chapter-1] - 1 < p_dvd->i_prg_cell )
1082     {
1083         i_chapter++;
1084     }
1085
1086     p_dvd->i_chapter = i_chapter;
1087
1088     /* we have to take care of offset of beginning of title */
1089     i_pos = i_off + p_input->stream.p_selected_area->i_start;
1090
1091     /* with DVD, we have to be on a sector boundary */
1092     i_pos = i_pos & (~0x7ff);
1093
1094     i_pos = lseek( p_dvd->i_fd, i_pos, SEEK_SET );
1095
1096     p_input->stream.p_selected_area->i_tell = i_pos -
1097                                     p_input->stream.p_selected_area->i_start;
1098     p_input->stream.p_selected_area->i_part = p_dvd->i_chapter;
1099
1100     return;
1101 }