add_integer: remove callback parameter
[vlc/asuraparaju-public.git] / modules / access / dvdread.c
blob76b94a8cb376f7ff4dcaa857d250706da3eb4de6
1 /*****************************************************************************
2 * dvdread.c : DvdRead input module for vlc
3 *****************************************************************************
4 * Copyright (C) 2001-2006 the VideoLAN team
5 * $Id$
7 * Authors: Stéphane Borel <stef@via.ecp.fr>
8 * Gildas Bazin <gbazin@videolan.org>
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.
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.
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 *****************************************************************************/
25 /*****************************************************************************
26 * Preamble
27 *****************************************************************************/
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
33 #include <vlc_common.h>
34 #include <vlc_plugin.h>
35 #include <vlc_input.h>
36 #include <vlc_access.h>
37 #include <vlc_charset.h>
38 #include <vlc_interface.h>
39 #include <vlc_dialog.h>
41 #include <vlc_iso_lang.h>
43 #include "../demux/ps.h"
45 #ifdef HAVE_UNISTD_H
46 # include <unistd.h>
47 #endif
49 #include <sys/types.h>
51 #include <dvdread/dvd_reader.h>
52 #include <dvdread/ifo_types.h>
53 #include <dvdread/ifo_read.h>
54 #include <dvdread/nav_read.h>
55 #include <dvdread/nav_print.h>
57 #include <assert.h>
59 /*****************************************************************************
60 * Module descriptor
61 *****************************************************************************/
62 #define ANGLE_TEXT N_("DVD angle")
63 #define ANGLE_LONGTEXT N_( \
64 "Default DVD angle." )
66 #define CACHING_TEXT N_("Caching value in ms")
67 #define CACHING_LONGTEXT N_( \
68 "Caching value for DVDs. " \
69 "This value should be set in milliseconds." )
71 static int Open ( vlc_object_t * );
72 static void Close( vlc_object_t * );
74 vlc_module_begin ()
75 set_shortname( N_("DVD without menus") )
76 set_description( N_("DVDRead Input (no menu support)") )
77 set_category( CAT_INPUT )
78 set_subcategory( SUBCAT_INPUT_ACCESS )
79 add_integer( "dvdread-angle", 1, ANGLE_TEXT,
80 ANGLE_LONGTEXT, false )
81 add_integer( "dvdread-caching", DEFAULT_PTS_DELAY / 1000,
82 CACHING_TEXT, CACHING_LONGTEXT, true )
83 add_obsolete_string( "dvdread-css-method" ) /* obsolete since 1.1.0 */
84 set_capability( "access_demux", 0 )
85 add_shortcut( "dvd", "dvdread", "dvdsimple" )
86 set_callbacks( Open, Close )
87 vlc_module_end ()
89 /* how many blocks DVDRead will read in each loop */
90 #define DVD_BLOCK_READ_ONCE 4
92 /*****************************************************************************
93 * Local prototypes
94 *****************************************************************************/
96 struct demux_sys_t
98 /* DVDRead state */
99 dvd_reader_t *p_dvdread;
100 dvd_file_t *p_title;
102 ifo_handle_t *p_vmg_file;
103 ifo_handle_t *p_vts_file;
105 int i_title;
106 int i_chapter, i_chapters;
107 int i_angle, i_angles;
109 tt_srpt_t *p_tt_srpt;
110 pgc_t *p_cur_pgc;
111 dsi_t dsi_pack;
112 int i_ttn;
114 int i_pack_len;
115 int i_cur_block;
116 int i_next_vobu;
118 int i_mux_rate;
120 /* Current title start/end blocks */
121 int i_title_start_block;
122 int i_title_end_block;
123 int i_title_blocks;
124 int i_title_offset;
125 mtime_t i_title_cur_time;
127 int i_title_start_cell;
128 int i_title_end_cell;
129 int i_cur_cell;
130 int i_next_cell;
131 mtime_t i_cell_cur_time;
132 mtime_t i_cell_duration;
134 /* Track */
135 ps_track_t tk[PS_TK_COUNT];
137 int i_titles;
138 input_title_t **titles;
140 /* Video */
141 int i_sar_num;
142 int i_sar_den;
144 /* SPU */
145 uint32_t clut[16];
148 static int Control ( demux_t *, int, va_list );
149 static int Demux ( demux_t * );
150 static int DemuxBlock( demux_t *, const uint8_t *, int );
152 static void DemuxTitles( demux_t *, int * );
153 static void ESNew( demux_t *, int, int );
155 static int DvdReadSetArea ( demux_t *, int, int, int );
156 static void DvdReadSeek ( demux_t *, int );
157 static void DvdReadHandleDSI( demux_t *, uint8_t * );
158 static void DvdReadFindCell ( demux_t * );
160 /*****************************************************************************
161 * Open:
162 *****************************************************************************/
163 static int Open( vlc_object_t *p_this )
165 demux_t *p_demux = (demux_t*)p_this;
166 demux_sys_t *p_sys;
167 char *psz_file;
168 ifo_handle_t *p_vmg_file;
170 if( !p_demux->psz_file || !*p_demux->psz_file )
172 /* Only when selected */
173 if( !p_demux->psz_access || !*p_demux->psz_access )
174 return VLC_EGENERIC;
176 psz_file = var_InheritString( p_this, "dvd" );
178 else
179 psz_file = strdup( p_demux->psz_file );
181 #ifdef WIN32
182 if( psz_file != NULL )
184 size_t flen = strlen( psz_file );
185 if( flen > 0 && psz_file[flen - 1] == '\\' )
186 psz_file[flen - 1] = '\0';
188 else
189 psz_file = strdup("");
190 #endif
191 if( unlikely(psz_file == NULL) )
192 return VLC_EGENERIC;
194 /* Open dvdread */
195 const char *psz_path = ToLocale( psz_file );
196 dvd_reader_t *p_dvdread = DVDOpen( psz_path );
198 LocaleFree( psz_path );
199 if( p_dvdread == NULL )
201 msg_Err( p_demux, "DVDRead cannot open source: %s", psz_file );
202 dialog_Fatal( p_demux, _("Playback failure"),
203 _("DVDRead could not open the disc \"%s\"."), psz_file );
204 free( psz_file );
205 return VLC_EGENERIC;
207 free( psz_file );
209 /* Ifo allocation & initialisation */
210 if( !( p_vmg_file = ifoOpen( p_dvdread, 0 ) ) )
212 msg_Warn( p_demux, "cannot open VMG info" );
213 return VLC_EGENERIC;
215 msg_Dbg( p_demux, "VMG opened" );
217 /* Fill p_demux field */
218 DEMUX_INIT_COMMON(); p_sys = p_demux->p_sys;
220 ps_track_init( p_sys->tk );
221 p_sys->i_sar_num = 0;
222 p_sys->i_sar_den = 0;
223 p_sys->i_title_cur_time = (mtime_t) 0;
224 p_sys->i_cell_cur_time = (mtime_t) 0;
225 p_sys->i_cell_duration = (mtime_t) 0;
227 p_sys->p_dvdread = p_dvdread;
228 p_sys->p_vmg_file = p_vmg_file;
229 p_sys->p_title = NULL;
230 p_sys->p_vts_file = NULL;
232 p_sys->i_title = p_sys->i_chapter = -1;
233 p_sys->i_mux_rate = 0;
235 p_sys->i_angle = var_CreateGetInteger( p_demux, "dvdread-angle" );
236 if( p_sys->i_angle <= 0 ) p_sys->i_angle = 1;
238 DemuxTitles( p_demux, &p_sys->i_angle );
239 if( DvdReadSetArea( p_demux, 0, 0, p_sys->i_angle ) != VLC_SUCCESS )
241 Close( p_this );
242 msg_Err( p_demux, "DvdReadSetArea(0,0,%i) failed (can't decrypt DVD?)",
243 p_sys->i_angle );
244 return VLC_EGENERIC;
247 /* Update default_pts to a suitable value for dvdread access */
248 var_Create( p_demux, "dvdread-caching",
249 VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
251 return VLC_SUCCESS;
254 /*****************************************************************************
255 * Close:
256 *****************************************************************************/
257 static void Close( vlc_object_t *p_this )
259 demux_t *p_demux = (demux_t*)p_this;
260 demux_sys_t *p_sys = p_demux->p_sys;
261 int i;
263 for( i = 0; i < PS_TK_COUNT; i++ )
265 ps_track_t *tk = &p_sys->tk[i];
266 if( tk->b_seen )
268 es_format_Clean( &tk->fmt );
269 if( tk->es ) es_out_Del( p_demux->out, tk->es );
273 /* Free the array of titles */
274 for( int i = 0; i < p_sys->i_titles; i++ )
275 vlc_input_title_Delete( p_sys->titles[i] );
276 TAB_CLEAN( p_sys->i_titles, p_sys->titles );
278 /* Close libdvdread */
279 if( p_sys->p_title ) DVDCloseFile( p_sys->p_title );
280 if( p_sys->p_vts_file ) ifoClose( p_sys->p_vts_file );
281 if( p_sys->p_vmg_file ) ifoClose( p_sys->p_vmg_file );
282 DVDClose( p_sys->p_dvdread );
284 free( p_sys );
287 static int64_t dvdtime_to_time( dvd_time_t *dtime, uint8_t still_time )
289 /* Macro to convert Binary Coded Decimal to Decimal */
290 #define BCD2D(__x__) (((__x__ & 0xf0) >> 4) * 10 + (__x__ & 0x0f))
292 double f_fps, f_ms;
293 int64_t i_micro_second = 0;
295 if (still_time == 0 || still_time == 0xFF)
297 i_micro_second += (int64_t)(BCD2D(dtime->hour)) * 60 * 60 * 1000000;
298 i_micro_second += (int64_t)(BCD2D(dtime->minute)) * 60 * 1000000;
299 i_micro_second += (int64_t)(BCD2D(dtime->second)) * 1000000;
301 switch((dtime->frame_u & 0xc0) >> 6)
303 case 1:
304 f_fps = 25.0;
305 break;
306 case 3:
307 f_fps = 29.97;
308 break;
309 default:
310 f_fps = 2500.0;
311 break;
313 f_ms = BCD2D(dtime->frame_u&0x3f) * 1000.0 / f_fps;
314 i_micro_second += (int64_t)(f_ms * 1000.0);
316 else
318 i_micro_second = still_time;
319 i_micro_second = (int64_t)((double)i_micro_second * 1000000.0);
322 return i_micro_second;
325 /*****************************************************************************
326 * Control:
327 *****************************************************************************/
328 static int Control( demux_t *p_demux, int i_query, va_list args )
330 demux_sys_t *p_sys = p_demux->p_sys;
331 double f, *pf;
332 bool *pb;
333 int64_t *pi64;
334 input_title_t ***ppp_title;
335 int *pi_int;
336 int i;
338 switch( i_query )
340 case DEMUX_GET_POSITION:
342 pf = (double*) va_arg( args, double* );
344 if( p_sys->i_title_blocks > 0 )
345 *pf = (double)p_sys->i_title_offset / p_sys->i_title_blocks;
346 else
347 *pf = 0.0;
349 return VLC_SUCCESS;
351 case DEMUX_SET_POSITION:
353 f = (double)va_arg( args, double );
355 DvdReadSeek( p_demux, f * p_sys->i_title_blocks );
357 return VLC_SUCCESS;
359 case DEMUX_GET_TIME:
360 pi64 = (int64_t*)va_arg( args, int64_t * );
361 if( p_demux->info.i_title >= 0 && p_demux->info.i_title < p_sys->i_titles )
363 *pi64 = (int64_t) dvdtime_to_time( &p_sys->p_cur_pgc->playback_time, 0 ) /
364 p_sys->i_title_blocks * p_sys->i_title_offset;
365 return VLC_SUCCESS;
367 *pi64 = 0;
368 return VLC_EGENERIC;
370 case DEMUX_GET_LENGTH:
371 pi64 = (int64_t*)va_arg( args, int64_t * );
372 if( p_demux->info.i_title >= 0 && p_demux->info.i_title < p_sys->i_titles )
374 *pi64 = (int64_t)dvdtime_to_time( &p_sys->p_cur_pgc->playback_time, 0 );
375 return VLC_SUCCESS;
377 *pi64 = 0;
378 return VLC_EGENERIC;
380 /* Special for access_demux */
381 case DEMUX_CAN_PAUSE:
382 case DEMUX_CAN_SEEK:
383 case DEMUX_CAN_CONTROL_PACE:
384 /* TODO */
385 pb = (bool*)va_arg( args, bool * );
386 *pb = true;
387 return VLC_SUCCESS;
389 case DEMUX_SET_PAUSE_STATE:
390 return VLC_SUCCESS;
392 case DEMUX_GET_TITLE_INFO:
393 ppp_title = (input_title_t***)va_arg( args, input_title_t*** );
394 pi_int = (int*)va_arg( args, int* );
395 *((int*)va_arg( args, int* )) = 1; /* Title offset */
396 *((int*)va_arg( args, int* )) = 1; /* Chapter offset */
398 /* Duplicate title infos */
399 *pi_int = p_sys->i_titles;
400 *ppp_title = malloc( sizeof(input_title_t **) * p_sys->i_titles );
401 for( i = 0; i < p_sys->i_titles; i++ )
403 (*ppp_title)[i] = vlc_input_title_Duplicate(p_sys->titles[i]);
405 return VLC_SUCCESS;
407 case DEMUX_SET_TITLE:
408 i = (int)va_arg( args, int );
409 if( DvdReadSetArea( p_demux, i, 0, -1 ) != VLC_SUCCESS )
411 msg_Warn( p_demux, "cannot set title/chapter" );
412 return VLC_EGENERIC;
414 p_demux->info.i_update |=
415 INPUT_UPDATE_TITLE | INPUT_UPDATE_SEEKPOINT;
416 p_demux->info.i_title = i;
417 p_demux->info.i_seekpoint = 0;
418 return VLC_SUCCESS;
420 case DEMUX_SET_SEEKPOINT:
421 i = (int)va_arg( args, int );
422 if( DvdReadSetArea( p_demux, -1, i, -1 ) != VLC_SUCCESS )
424 msg_Warn( p_demux, "cannot set title/chapter" );
425 return VLC_EGENERIC;
427 p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT;
428 p_demux->info.i_seekpoint = i;
429 return VLC_SUCCESS;
431 case DEMUX_GET_PTS_DELAY:
432 pi64 = (int64_t*)va_arg( args, int64_t * );
433 *pi64 = var_GetInteger( p_demux, "dvdread-caching" )*1000;
434 return VLC_SUCCESS;
436 /* TODO implement others */
437 default:
438 return VLC_EGENERIC;
442 /*****************************************************************************
443 * Demux:
444 *****************************************************************************/
445 static int Demux( demux_t *p_demux )
447 demux_sys_t *p_sys = p_demux->p_sys;
449 uint8_t p_buffer[DVD_VIDEO_LB_LEN * DVD_BLOCK_READ_ONCE];
450 int i_blocks_once, i_read;
451 int i;
454 * Playback by cell in this pgc, starting at the cell for our chapter.
458 * Check end of pack, and select the following one
460 if( !p_sys->i_pack_len )
462 /* Read NAV packet */
463 if( DVDReadBlocks( p_sys->p_title, p_sys->i_next_vobu,
464 1, p_buffer ) != 1 )
466 msg_Err( p_demux, "read failed for block %d", p_sys->i_next_vobu );
467 dialog_Fatal( p_demux, _("Playback failure"),
468 _("DVDRead could not read block %d."),
469 p_sys->i_next_vobu );
470 return -1;
473 /* Basic check to be sure we don't have a empty title
474 * go to next title if so */
475 //assert( p_buffer[41] == 0xbf && p_buffer[1027] == 0xbf );
477 /* Parse the contained dsi packet */
478 DvdReadHandleDSI( p_demux, p_buffer );
480 /* End of title */
481 if( p_sys->i_cur_cell >= p_sys->p_cur_pgc->nr_of_cells )
483 if( p_sys->i_title + 1 >= p_sys->i_titles )
485 return 0; /* EOF */
488 DvdReadSetArea( p_demux, p_sys->i_title + 1, 0, -1 );
491 if( p_sys->i_pack_len >= 1024 )
493 msg_Err( p_demux, "i_pack_len >= 1024 (%i). "
494 "This shouldn't happen!", p_sys->i_pack_len );
495 return 0; /* EOF */
498 /* FIXME: Ugly kludge: we send the pack block to the input for it
499 * sometimes has a zero scr and restart the sync */
500 p_sys->i_cur_block++;
501 p_sys->i_title_offset++;
503 DemuxBlock( p_demux, p_buffer, DVD_VIDEO_LB_LEN );
506 if( p_sys->i_cur_cell >= p_sys->p_cur_pgc->nr_of_cells )
508 if( p_sys->i_title + 1 >= p_sys->i_titles )
510 return 0; /* EOF */
513 DvdReadSetArea( p_demux, p_sys->i_title + 1, 0, -1 );
517 * Read actual data
519 i_blocks_once = __MIN( p_sys->i_pack_len, DVD_BLOCK_READ_ONCE );
520 p_sys->i_pack_len -= i_blocks_once;
522 /* Reads from DVD */
523 i_read = DVDReadBlocks( p_sys->p_title, p_sys->i_cur_block,
524 i_blocks_once, p_buffer );
525 if( i_read != i_blocks_once )
527 msg_Err( p_demux, "read failed for %d/%d blocks at 0x%02x",
528 i_read, i_blocks_once, p_sys->i_cur_block );
529 dialog_Fatal( p_demux, _("Playback failure"),
530 _("DVDRead could not read %d/%d blocks at 0x%02x."),
531 i_read, i_blocks_once, p_sys->i_cur_block );
532 return -1;
535 p_sys->i_cur_block += i_read;
536 p_sys->i_title_offset += i_read;
538 #if 0
539 msg_Dbg( p_demux, "i_blocks: %d len: %d current: 0x%02x",
540 i_read, p_sys->i_pack_len, p_sys->i_cur_block );
541 #endif
543 for( i = 0; i < i_read; i++ )
545 DemuxBlock( p_demux, p_buffer + i * DVD_VIDEO_LB_LEN,
546 DVD_VIDEO_LB_LEN );
549 #undef p_pgc
551 return 1;
554 /*****************************************************************************
555 * DemuxBlock: demux a given block
556 *****************************************************************************/
557 static int DemuxBlock( demux_t *p_demux, const uint8_t *p, int len )
559 demux_sys_t *p_sys = p_demux->p_sys;
561 while( len > 0 )
563 int i_size = ps_pkt_size( p, len );
564 if( i_size <= 0 || i_size > len )
566 break;
569 /* Create a block */
570 block_t *p_pkt = block_New( p_demux, i_size );
571 memcpy( p_pkt->p_buffer, p, i_size);
573 /* Parse it and send it */
574 switch( 0x100 | p[3] )
576 case 0x1b9:
577 case 0x1bb:
578 case 0x1bc:
580 #ifdef DVDREAD_DEBUG
581 if( p[3] == 0xbc )
583 msg_Warn( p_demux, "received a PSM packet" );
585 else if( p[3] == 0xbb )
587 msg_Warn( p_demux, "received a SYSTEM packet" );
589 #endif
590 block_Release( p_pkt );
591 break;
593 case 0x1ba:
595 int64_t i_scr;
596 int i_mux_rate;
597 if( !ps_pkt_parse_pack( p_pkt, &i_scr, &i_mux_rate ) )
599 es_out_Control( p_demux->out, ES_OUT_SET_PCR, i_scr );
600 if( i_mux_rate > 0 ) p_sys->i_mux_rate = i_mux_rate;
602 block_Release( p_pkt );
603 break;
605 default:
607 int i_id = ps_pkt_id( p_pkt );
608 if( i_id >= 0xc0 )
610 ps_track_t *tk = &p_sys->tk[PS_ID_TO_TK(i_id)];
612 if( !tk->b_seen )
614 ESNew( p_demux, i_id, 0 );
616 if( tk->b_seen && tk->es &&
617 !ps_pkt_parse_pes( p_pkt, tk->i_skip ) )
619 es_out_Send( p_demux->out, tk->es, p_pkt );
621 else
623 block_Release( p_pkt );
626 else
628 block_Release( p_pkt );
630 break;
634 p += i_size;
635 len -= i_size;
638 return VLC_SUCCESS;
641 /*****************************************************************************
642 * ESNew: register a new elementary stream
643 *****************************************************************************/
644 static void ESNew( demux_t *p_demux, int i_id, int i_lang )
646 demux_sys_t *p_sys = p_demux->p_sys;
647 ps_track_t *tk = &p_sys->tk[PS_ID_TO_TK(i_id)];
648 char psz_language[3];
650 if( tk->b_seen ) return;
652 if( ps_track_fill( tk, 0, i_id ) )
654 msg_Warn( p_demux, "unknown codec for id=0x%x", i_id );
655 return;
658 psz_language[0] = psz_language[1] = psz_language[2] = 0;
659 if( i_lang && i_lang != 0xffff )
661 psz_language[0] = (i_lang >> 8)&0xff;
662 psz_language[1] = (i_lang )&0xff;
665 /* Add a new ES */
666 if( tk->fmt.i_cat == VIDEO_ES )
668 tk->fmt.video.i_sar_num = p_sys->i_sar_num;
669 tk->fmt.video.i_sar_den = p_sys->i_sar_den;
671 else if( tk->fmt.i_cat == AUDIO_ES )
673 int i_audio = -1;
674 /* find the audio number PLEASE find another way */
675 if( (i_id&0xbdf8) == 0xbd88 ) /* dts */
677 i_audio = i_id&0x07;
679 else if( (i_id&0xbdf0) == 0xbd80 ) /* a52 */
681 i_audio = i_id&0xf;
683 else if( (i_id&0xbdf0) == 0xbda0 ) /* lpcm */
685 i_audio = i_id&0x1f;
687 else if( ( i_id&0xe0 ) == 0xc0 ) /* mpga */
689 i_audio = i_id&0x1f;
692 if( psz_language[0] ) tk->fmt.psz_language = strdup( psz_language );
694 else if( tk->fmt.i_cat == SPU_ES )
696 /* Palette */
697 tk->fmt.subs.spu.palette[0] = 0xBeef;
698 memcpy( &tk->fmt.subs.spu.palette[1], p_sys->clut,
699 16 * sizeof( uint32_t ) );
701 if( psz_language[0] ) tk->fmt.psz_language = strdup( psz_language );
704 tk->es = es_out_Add( p_demux->out, &tk->fmt );
705 tk->b_seen = true;
708 /*****************************************************************************
709 * DvdReadSetArea: initialize input data for title x, chapter y.
710 * It should be called for each user navigation request.
711 *****************************************************************************
712 * Take care that i_title and i_chapter start from 0.
713 *****************************************************************************/
714 static int DvdReadSetArea( demux_t *p_demux, int i_title, int i_chapter,
715 int i_angle )
717 VLC_UNUSED( i_angle );
719 demux_sys_t *p_sys = p_demux->p_sys;
720 int pgc_id = 0, pgn = 0;
721 int i;
723 #define p_pgc p_sys->p_cur_pgc
724 #define p_vmg p_sys->p_vmg_file
725 #define p_vts p_sys->p_vts_file
727 if( i_title >= 0 && i_title < p_sys->i_titles &&
728 i_title != p_sys->i_title )
730 int i_start_cell, i_end_cell;
732 if( p_sys->p_title != NULL ) DVDCloseFile( p_sys->p_title );
733 if( p_vts != NULL ) ifoClose( p_vts );
734 p_sys->i_title = i_title;
737 * We have to load all title information
739 msg_Dbg( p_demux, "open VTS %d, for title %d",
740 p_vmg->tt_srpt->title[i_title].title_set_nr, i_title + 1 );
742 /* Ifo vts */
743 if( !( p_vts = ifoOpen( p_sys->p_dvdread,
744 p_vmg->tt_srpt->title[i_title].title_set_nr ) ) )
746 msg_Err( p_demux, "fatal error in vts ifo" );
747 return VLC_EGENERIC;
750 /* Title position inside the selected vts */
751 p_sys->i_ttn = p_vmg->tt_srpt->title[i_title].vts_ttn;
753 /* Find title start/end */
754 pgc_id = p_vts->vts_ptt_srpt->title[p_sys->i_ttn - 1].ptt[0].pgcn;
755 pgn = p_vts->vts_ptt_srpt->title[p_sys->i_ttn - 1].ptt[0].pgn;
756 p_pgc = p_vts->vts_pgcit->pgci_srp[pgc_id - 1].pgc;
758 p_sys->i_title_start_cell =
759 i_start_cell = p_pgc->program_map[pgn - 1] - 1;
760 p_sys->i_title_start_block =
761 p_pgc->cell_playback[i_start_cell].first_sector;
763 p_sys->i_title_end_cell =
764 i_end_cell = p_pgc->nr_of_cells - 1;
765 p_sys->i_title_end_block =
766 p_pgc->cell_playback[i_end_cell].last_sector;
768 p_sys->i_title_offset = 0;
770 p_sys->i_title_blocks = 0;
771 for( i = i_start_cell; i <= i_end_cell; i++ )
773 p_sys->i_title_blocks += p_pgc->cell_playback[i].last_sector -
774 p_pgc->cell_playback[i].first_sector + 1;
777 msg_Dbg( p_demux, "title %d vts_title %d pgc %d pgn %d "
778 "start %d end %d blocks: %d",
779 i_title + 1, p_sys->i_ttn, pgc_id, pgn,
780 p_sys->i_title_start_block, p_sys->i_title_end_block,
781 p_sys->i_title_blocks );
784 * Set properties for current chapter
786 p_sys->i_chapter = 0;
787 p_sys->i_chapters =
788 p_vts->vts_ptt_srpt->title[p_sys->i_ttn - 1].nr_of_ptts;
790 pgc_id = p_vts->vts_ptt_srpt->title[
791 p_sys->i_ttn - 1].ptt[p_sys->i_chapter].pgcn;
792 pgn = p_vts->vts_ptt_srpt->title[
793 p_sys->i_ttn - 1].ptt[p_sys->i_chapter].pgn;
795 p_pgc = p_vts->vts_pgcit->pgci_srp[pgc_id - 1].pgc;
796 p_sys->i_pack_len = 0;
797 p_sys->i_next_cell =
798 p_sys->i_cur_cell = p_pgc->program_map[pgn - 1] - 1;
799 DvdReadFindCell( p_demux );
801 p_sys->i_next_vobu = p_sys->i_cur_block =
802 p_pgc->cell_playback[p_sys->i_cur_cell].first_sector;
805 * Angle management
807 p_sys->i_angles = p_vmg->tt_srpt->title[i_title].nr_of_angles;
808 if( p_sys->i_angle > p_sys->i_angles ) p_sys->i_angle = 1;
811 * We've got enough info, time to open the title set data.
813 if( !( p_sys->p_title = DVDOpenFile( p_sys->p_dvdread,
814 p_vmg->tt_srpt->title[i_title].title_set_nr,
815 DVD_READ_TITLE_VOBS ) ) )
817 msg_Err( p_demux, "cannot open title (VTS_%02d_1.VOB)",
818 p_vmg->tt_srpt->title[i_title].title_set_nr );
819 return VLC_EGENERIC;
822 //IfoPrintTitle( p_demux );
825 * Destroy obsolete ES by reinitializing program 0
826 * and find all ES in title with ifo data
828 es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
830 for( i = 0; i < PS_TK_COUNT; i++ )
832 ps_track_t *tk = &p_sys->tk[i];
833 if( tk->b_seen )
835 es_format_Clean( &tk->fmt );
836 if( tk->es ) es_out_Del( p_demux->out, tk->es );
838 tk->b_seen = false;
841 if( p_demux->info.i_title != i_title )
843 p_demux->info.i_update |=
844 INPUT_UPDATE_TITLE | INPUT_UPDATE_SEEKPOINT;
845 p_demux->info.i_title = i_title;
846 p_demux->info.i_seekpoint = 0;
849 /* TODO: re-add angles */
852 ESNew( p_demux, 0xe0, 0 ); /* Video, FIXME ? */
853 const video_attr_t *p_attr = &p_vts->vtsi_mat->vts_video_attr;
854 int i_video_height = p_attr->video_format != 0 ? 576 : 480;
855 int i_video_width;
856 switch( p_attr->picture_size )
858 case 0:
859 i_video_width = 720;
860 break;
861 case 1:
862 i_video_width = 704;
863 break;
864 case 2:
865 i_video_width = 352;
866 break;
867 default:
868 case 3:
869 i_video_width = 352;
870 i_video_height /= 2;
871 break;
873 switch( p_attr->display_aspect_ratio )
875 case 0:
876 p_sys->i_sar_num = 4 * i_video_height;
877 p_sys->i_sar_den = 3 * i_video_width;
878 break;
879 case 3:
880 p_sys->i_sar_num = 16 * i_video_height;
881 p_sys->i_sar_den = 9 * i_video_width;
882 break;
883 default:
884 p_sys->i_sar_num = 0;
885 p_sys->i_sar_den = 0;
886 break;
889 #define audio_control \
890 p_sys->p_vts_file->vts_pgcit->pgci_srp[pgc_id-1].pgc->audio_control[i-1]
892 /* Audio ES, in the order they appear in the .ifo */
893 for( i = 1; i <= p_vts->vtsi_mat->nr_of_vts_audio_streams; i++ )
895 int i_position = 0;
896 uint16_t i_id;
898 //IfoPrintAudio( p_demux, i );
900 /* Audio channel is active if first byte is 0x80 */
901 if( audio_control & 0x8000 )
903 i_position = ( audio_control & 0x7F00 ) >> 8;
905 msg_Dbg( p_demux, "audio position %d", i_position );
906 switch( p_vts->vtsi_mat->vts_audio_attr[i - 1].audio_format )
908 case 0x00: /* A52 */
909 i_id = (0x80 + i_position) | 0xbd00;
910 break;
911 case 0x02:
912 case 0x03: /* MPEG audio */
913 i_id = 0xc000 + i_position;
914 break;
915 case 0x04: /* LPCM */
916 i_id = (0xa0 + i_position) | 0xbd00;
917 break;
918 case 0x06: /* DTS */
919 i_id = (0x88 + i_position) | 0xbd00;
920 break;
921 default:
922 i_id = 0;
923 msg_Err( p_demux, "unknown audio type %.2x",
924 p_vts->vtsi_mat->vts_audio_attr[i - 1].audio_format );
927 ESNew( p_demux, i_id, p_sys->p_vts_file->vtsi_mat->
928 vts_audio_attr[i - 1].lang_code );
931 #undef audio_control
933 #define spu_palette \
934 p_sys->p_vts_file->vts_pgcit->pgci_srp[pgc_id-1].pgc->palette
936 memcpy( p_sys->clut, spu_palette, 16 * sizeof( uint32_t ) );
938 #define spu_control \
939 p_sys->p_vts_file->vts_pgcit->pgci_srp[pgc_id-1].pgc->subp_control[i-1]
941 /* Sub Picture ES */
942 for( i = 1; i <= p_vts->vtsi_mat->nr_of_vts_subp_streams; i++ )
944 int i_position = 0;
945 uint16_t i_id;
947 //IfoPrintSpu( p_sys, i );
948 msg_Dbg( p_demux, "spu %d 0x%02x", i, spu_control );
950 if( spu_control & 0x80000000 )
952 /* there are several streams for one spu */
953 if( p_vts->vtsi_mat->vts_video_attr.display_aspect_ratio )
955 /* 16:9 */
956 switch( p_vts->vtsi_mat->vts_video_attr.permitted_df )
958 case 1: /* letterbox */
959 i_position = spu_control & 0xff;
960 break;
961 case 2: /* pan&scan */
962 i_position = ( spu_control >> 8 ) & 0xff;
963 break;
964 default: /* widescreen */
965 i_position = ( spu_control >> 16 ) & 0xff;
966 break;
969 else
971 /* 4:3 */
972 i_position = ( spu_control >> 24 ) & 0x7F;
975 i_id = (0x20 + i_position) | 0xbd00;
977 ESNew( p_demux, i_id, p_sys->p_vts_file->vtsi_mat->
978 vts_subp_attr[i - 1].lang_code );
981 #undef spu_control
984 else if( i_title != -1 && i_title != p_sys->i_title )
987 return VLC_EGENERIC; /* Couldn't set title */
991 * Chapter selection
994 if( i_chapter >= 0 && i_chapter < p_sys->i_chapters )
996 pgc_id = p_vts->vts_ptt_srpt->title[
997 p_sys->i_ttn - 1].ptt[i_chapter].pgcn;
998 pgn = p_vts->vts_ptt_srpt->title[
999 p_sys->i_ttn - 1].ptt[i_chapter].pgn;
1001 p_pgc = p_vts->vts_pgcit->pgci_srp[pgc_id - 1].pgc;
1003 p_sys->i_cur_cell = p_pgc->program_map[pgn - 1] - 1;
1004 p_sys->i_chapter = i_chapter;
1005 DvdReadFindCell( p_demux );
1007 p_sys->i_title_offset = 0;
1008 for( i = p_sys->i_title_start_cell; i < p_sys->i_cur_cell; i++ )
1010 p_sys->i_title_offset += p_pgc->cell_playback[i].last_sector -
1011 p_pgc->cell_playback[i].first_sector + 1;
1014 p_sys->i_pack_len = 0;
1015 p_sys->i_next_vobu = p_sys->i_cur_block =
1016 p_pgc->cell_playback[p_sys->i_cur_cell].first_sector;
1018 if( p_demux->info.i_seekpoint != i_chapter )
1020 p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT;
1021 p_demux->info.i_seekpoint = i_chapter;
1024 else if( i_chapter != -1 )
1027 return VLC_EGENERIC; /* Couldn't set chapter */
1030 #undef p_pgc
1031 #undef p_vts
1032 #undef p_vmg
1034 return VLC_SUCCESS;
1037 /*****************************************************************************
1038 * DvdReadSeek : Goes to a given position on the stream.
1039 *****************************************************************************
1040 * This one is used by the input and translate chronological position from
1041 * input to logical position on the device.
1042 *****************************************************************************/
1043 static void DvdReadSeek( demux_t *p_demux, int i_block_offset )
1045 demux_sys_t *p_sys = p_demux->p_sys;
1046 int i_chapter = 0;
1047 int i_cell = 0;
1048 int i_vobu = 0;
1049 int i_sub_cell = 0;
1050 int i_block;
1052 #define p_pgc p_sys->p_cur_pgc
1053 #define p_vts p_sys->p_vts_file
1055 /* Find cell */
1056 i_block = i_block_offset;
1057 for( i_cell = p_sys->i_title_start_cell;
1058 i_cell <= p_sys->i_title_end_cell; i_cell++ )
1060 if( i_block < (int)p_pgc->cell_playback[i_cell].last_sector -
1061 (int)p_pgc->cell_playback[i_cell].first_sector + 1 ) break;
1063 i_block -= (p_pgc->cell_playback[i_cell].last_sector -
1064 p_pgc->cell_playback[i_cell].first_sector + 1);
1066 if( i_cell > p_sys->i_title_end_cell )
1068 msg_Err( p_demux, "couldn't find cell for block %i", i_block_offset );
1069 return;
1071 i_block += p_pgc->cell_playback[i_cell].first_sector;
1072 p_sys->i_title_offset = i_block_offset;
1074 /* Find chapter */
1075 for( i_chapter = 0; i_chapter < p_sys->i_chapters; i_chapter++ )
1077 int pgc_id, pgn, i_tmp;
1079 pgc_id = p_vts->vts_ptt_srpt->title[
1080 p_sys->i_ttn - 1].ptt[i_chapter].pgcn;
1081 pgn = p_vts->vts_ptt_srpt->title[
1082 p_sys->i_ttn - 1].ptt[i_chapter].pgn;
1084 i_tmp = p_vts->vts_pgcit->pgci_srp[pgc_id - 1].pgc->program_map[pgn-1];
1086 if( i_tmp > i_cell ) break;
1089 if( i_chapter < p_sys->i_chapters &&
1090 p_demux->info.i_seekpoint != i_chapter )
1092 p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT;
1093 p_demux->info.i_seekpoint = i_chapter;
1096 /* Find vobu */
1097 while( (int)p_vts->vts_vobu_admap->vobu_start_sectors[i_vobu] <= i_block )
1099 i_vobu++;
1102 /* Find sub_cell */
1103 while( p_vts->vts_c_adt->cell_adr_table[i_sub_cell].start_sector <
1104 p_vts->vts_vobu_admap->vobu_start_sectors[i_vobu-1] )
1106 i_sub_cell++;
1109 #if 1
1110 msg_Dbg( p_demux, "cell %d i_sub_cell %d chapter %d vobu %d "
1111 "cell_sector %d vobu_sector %d sub_cell_sector %d",
1112 i_cell, i_sub_cell, i_chapter, i_vobu,
1113 p_sys->p_cur_pgc->cell_playback[i_cell].first_sector,
1114 p_vts->vts_vobu_admap->vobu_start_sectors[i_vobu],
1115 p_vts->vts_c_adt->cell_adr_table[i_sub_cell - 1].start_sector);
1116 #endif
1118 p_sys->i_cur_block = i_block;
1119 p_sys->i_next_vobu = p_vts->vts_vobu_admap->vobu_start_sectors[i_vobu];
1120 p_sys->i_pack_len = p_sys->i_next_vobu - i_block;
1121 p_sys->i_cur_cell = i_cell;
1122 p_sys->i_chapter = i_chapter;
1123 DvdReadFindCell( p_demux );
1125 #undef p_vts
1126 #undef p_pgc
1128 return;
1131 /*****************************************************************************
1132 * DvdReadHandleDSI
1133 *****************************************************************************/
1134 static void DvdReadHandleDSI( demux_t *p_demux, uint8_t *p_data )
1136 demux_sys_t *p_sys = p_demux->p_sys;
1138 navRead_DSI( &p_sys->dsi_pack, &p_data[DSI_START_BYTE] );
1141 * Determine where we go next. These values are the ones we mostly
1142 * care about.
1144 p_sys->i_cur_block = p_sys->dsi_pack.dsi_gi.nv_pck_lbn;
1145 p_sys->i_pack_len = p_sys->dsi_pack.dsi_gi.vobu_ea;
1148 * Store the timecodes so we can get the current time
1150 p_sys->i_title_cur_time = (mtime_t) (p_sys->dsi_pack.dsi_gi.nv_pck_scr / 90 * 1000);
1151 p_sys->i_cell_cur_time = (mtime_t) dvdtime_to_time( &p_sys->dsi_pack.dsi_gi.c_eltm, 0 );
1154 * If we're not at the end of this cell, we can determine the next
1155 * VOBU to display using the VOBU_SRI information section of the
1156 * DSI. Using this value correctly follows the current angle,
1157 * avoiding the doubled scenes in The Matrix, and makes our life
1158 * really happy.
1161 p_sys->i_next_vobu = p_sys->i_cur_block +
1162 ( p_sys->dsi_pack.vobu_sri.next_vobu & 0x7fffffff );
1164 if( p_sys->dsi_pack.vobu_sri.next_vobu != SRI_END_OF_CELL
1165 && p_sys->i_angle > 1 )
1167 switch( ( p_sys->dsi_pack.sml_pbi.category & 0xf000 ) >> 12 )
1169 case 0x4:
1170 /* Interleaved unit with no angle */
1171 if( p_sys->dsi_pack.sml_pbi.ilvu_sa != 0 )
1173 p_sys->i_next_vobu = p_sys->i_cur_block +
1174 p_sys->dsi_pack.sml_pbi.ilvu_sa;
1175 p_sys->i_pack_len = p_sys->dsi_pack.sml_pbi.ilvu_ea;
1177 else
1179 p_sys->i_next_vobu = p_sys->i_cur_block +
1180 p_sys->dsi_pack.dsi_gi.vobu_ea + 1;
1182 break;
1183 case 0x5:
1184 /* vobu is end of ilvu */
1185 if( p_sys->dsi_pack.sml_agli.data[p_sys->i_angle-1].address )
1187 p_sys->i_next_vobu = p_sys->i_cur_block +
1188 p_sys->dsi_pack.sml_agli.data[p_sys->i_angle-1].address;
1189 p_sys->i_pack_len = p_sys->dsi_pack.sml_pbi.ilvu_ea;
1191 break;
1193 case 0x6:
1194 /* vobu is beginning of ilvu */
1195 case 0x9:
1196 /* next scr is 0 */
1197 case 0xa:
1198 /* entering interleaved section */
1199 case 0x8:
1200 /* non interleaved cells in interleaved section */
1201 default:
1202 p_sys->i_next_vobu = p_sys->i_cur_block +
1203 ( p_sys->dsi_pack.vobu_sri.next_vobu & 0x7fffffff );
1204 break;
1207 else if( p_sys->dsi_pack.vobu_sri.next_vobu == SRI_END_OF_CELL )
1209 p_sys->i_cur_cell = p_sys->i_next_cell;
1211 /* End of title */
1212 if( p_sys->i_cur_cell >= p_sys->p_cur_pgc->nr_of_cells ) return;
1214 DvdReadFindCell( p_demux );
1216 p_sys->i_next_vobu =
1217 p_sys->p_cur_pgc->cell_playback[p_sys->i_cur_cell].first_sector;
1219 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 );
1223 #if 0
1224 msg_Dbg( p_demux, "scr %d lbn 0x%02x vobu_ea %d vob_id %d c_id %d c_time %lld",
1225 p_sys->dsi_pack.dsi_gi.nv_pck_scr,
1226 p_sys->dsi_pack.dsi_gi.nv_pck_lbn,
1227 p_sys->dsi_pack.dsi_gi.vobu_ea,
1228 p_sys->dsi_pack.dsi_gi.vobu_vob_idn,
1229 p_sys->dsi_pack.dsi_gi.vobu_c_idn,
1230 dvdtime_to_time( &p_sys->dsi_pack.dsi_gi.c_eltm, 0 ) );
1232 msg_Dbg( p_demux, "cell duration: %lld",
1233 (mtime_t)dvdtime_to_time( &p_sys->p_cur_pgc->cell_playback[p_sys->i_cur_cell].playback_time, 0 ) );
1235 msg_Dbg( p_demux, "cat 0x%02x ilvu_ea %d ilvu_sa %d size %d",
1236 p_sys->dsi_pack.sml_pbi.category,
1237 p_sys->dsi_pack.sml_pbi.ilvu_ea,
1238 p_sys->dsi_pack.sml_pbi.ilvu_sa,
1239 p_sys->dsi_pack.sml_pbi.size );
1241 msg_Dbg( p_demux, "next_vobu %d next_ilvu1 %d next_ilvu2 %d",
1242 p_sys->dsi_pack.vobu_sri.next_vobu & 0x7fffffff,
1243 p_sys->dsi_pack.sml_agli.data[ p_sys->i_angle - 1 ].address,
1244 p_sys->dsi_pack.sml_agli.data[ p_sys->i_angle ].address);
1245 #endif
1248 /*****************************************************************************
1249 * DvdReadFindCell
1250 *****************************************************************************/
1251 static void DvdReadFindCell( demux_t *p_demux )
1253 demux_sys_t *p_sys = p_demux->p_sys;
1255 pgc_t *p_pgc;
1256 int pgc_id, pgn;
1257 int i = 0;
1259 #define cell p_sys->p_cur_pgc->cell_playback
1261 if( cell[p_sys->i_cur_cell].block_type == BLOCK_TYPE_ANGLE_BLOCK )
1263 p_sys->i_cur_cell += p_sys->i_angle - 1;
1265 while( cell[p_sys->i_cur_cell+i].block_mode != BLOCK_MODE_LAST_CELL )
1267 i++;
1269 p_sys->i_next_cell = p_sys->i_cur_cell + i + 1;
1271 else
1273 p_sys->i_next_cell = p_sys->i_cur_cell + 1;
1276 #undef cell
1278 if( p_sys->i_chapter + 1 >= p_sys->i_chapters ) return;
1280 pgc_id = p_sys->p_vts_file->vts_ptt_srpt->title[
1281 p_sys->i_ttn - 1].ptt[p_sys->i_chapter + 1].pgcn;
1282 pgn = p_sys->p_vts_file->vts_ptt_srpt->title[
1283 p_sys->i_ttn - 1].ptt[p_sys->i_chapter + 1].pgn;
1284 p_pgc = p_sys->p_vts_file->vts_pgcit->pgci_srp[pgc_id - 1].pgc;
1286 if( p_sys->i_cur_cell >= p_pgc->program_map[pgn - 1] - 1 )
1288 p_sys->i_chapter++;
1290 if( p_sys->i_chapter < p_sys->i_chapters &&
1291 p_demux->info.i_seekpoint != p_sys->i_chapter )
1293 p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT;
1294 p_demux->info.i_seekpoint = p_sys->i_chapter;
1299 /*****************************************************************************
1300 * DemuxTitles: get the titles/chapters structure
1301 *****************************************************************************/
1302 static void DemuxTitles( demux_t *p_demux, int *pi_angle )
1304 VLC_UNUSED( pi_angle );
1306 demux_sys_t *p_sys = p_demux->p_sys;
1307 input_title_t *t;
1308 seekpoint_t *s;
1310 /* Find out number of titles/chapters */
1311 #define tt_srpt p_sys->p_vmg_file->tt_srpt
1313 int32_t i_titles = tt_srpt->nr_of_srpts;
1314 msg_Dbg( p_demux, "number of titles: %d", i_titles );
1316 for( int i = 0; i < i_titles; i++ )
1318 int32_t i_chapters = 0;
1319 int j;
1321 i_chapters = tt_srpt->title[i].nr_of_ptts;
1322 msg_Dbg( p_demux, "title %d has %d chapters", i, i_chapters );
1324 t = vlc_input_title_New();
1326 for( j = 0; j < __MAX( i_chapters, 1 ); j++ )
1328 s = vlc_seekpoint_New();
1329 TAB_APPEND( t->i_seekpoint, t->seekpoint, s );
1332 TAB_APPEND( p_sys->i_titles, p_sys->titles, t );
1335 #undef tt_srpt