| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 |
#ifdef HAVE_CONFIG_H |
|---|
| 30 |
# include "config.h" |
|---|
| 31 |
#endif |
|---|
| 32 |
|
|---|
| 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 |
|
|---|
| 39 |
#include <vlc_interface.h> |
|---|
| 40 |
|
|---|
| 41 |
#include <vlc_iso_lang.h> |
|---|
| 42 |
|
|---|
| 43 |
#include "../demux/ps.h" |
|---|
| 44 |
|
|---|
| 45 |
#ifdef HAVE_UNISTD_H |
|---|
| 46 |
# include <unistd.h> |
|---|
| 47 |
#endif |
|---|
| 48 |
|
|---|
| 49 |
#include <fcntl.h> |
|---|
| 50 |
#include <sys/types.h> |
|---|
| 51 |
#include <sys/stat.h> |
|---|
| 52 |
|
|---|
| 53 |
#ifdef HAVE_DVDREAD_DVD_READER_H |
|---|
| 54 |
#include <dvdread/dvd_reader.h> |
|---|
| 55 |
#include <dvdread/ifo_types.h> |
|---|
| 56 |
#include <dvdread/ifo_read.h> |
|---|
| 57 |
#include <dvdread/nav_read.h> |
|---|
| 58 |
#include <dvdread/nav_print.h> |
|---|
| 59 |
#else |
|---|
| 60 |
#include <libdvdread/dvd_reader.h> |
|---|
| 61 |
#include <libdvdread/ifo_types.h> |
|---|
| 62 |
#include <libdvdread/ifo_read.h> |
|---|
| 63 |
#include <libdvdread/nav_read.h> |
|---|
| 64 |
#include <libdvdread/nav_print.h> |
|---|
| 65 |
#endif |
|---|
| 66 |
|
|---|
| 67 |
#include <assert.h> |
|---|
| 68 |
|
|---|
| 69 |
|
|---|
| 70 |
|
|---|
| 71 |
|
|---|
| 72 |
#define ANGLE_TEXT N_("DVD angle") |
|---|
| 73 |
#define ANGLE_LONGTEXT N_( \ |
|---|
| 74 |
"Default DVD angle." ) |
|---|
| 75 |
|
|---|
| 76 |
#define CACHING_TEXT N_("Caching value in ms") |
|---|
| 77 |
#define CACHING_LONGTEXT N_( \ |
|---|
| 78 |
"Caching value for DVDs. " \ |
|---|
| 79 |
"This value should be set in milliseconds." ) |
|---|
| 80 |
|
|---|
| 81 |
#define CSSMETHOD_TEXT N_("Method used by libdvdcss for decryption") |
|---|
| 82 |
#define CSSMETHOD_LONGTEXT N_( \ |
|---|
| 83 |
"Set the method used by libdvdcss for key decryption.\n" \ |
|---|
| 84 |
"title: decrypted title key is guessed from the encrypted sectors of " \ |
|---|
| 85 |
"the stream. Thus it should work with a file as well as the " \ |
|---|
| 86 |
"DVD device. But it sometimes takes much time to decrypt a title " \ |
|---|
| 87 |
"key and may even fail. With this method, the key is only checked "\ |
|---|
| 88 |
"at the beginning of each title, so it won't work if the key " \ |
|---|
| 89 |
"changes in the middle of a title.\n" \ |
|---|
| 90 |
"disc: the disc key is first cracked, then all title keys can be " \ |
|---|
| 91 |
"decrypted instantly, which allows us to check them often.\n" \ |
|---|
| 92 |
"key: the same as \"disc\" if you don't have a file with player keys " \ |
|---|
| 93 |
"at compilation time. If you do, the decryption of the disc key " \ |
|---|
| 94 |
"will be faster with this method. It is the one that was used by " \ |
|---|
| 95 |
"libcss.\n" \ |
|---|
| 96 |
"The default method is: key.") |
|---|
| 97 |
|
|---|
| 98 |
static const char *const psz_css_list[] = { "title", "disc", "key" }; |
|---|
| 99 |
static const char *const psz_css_list_text[] = { N_("title"), N_("Disc"), N_("Key") }; |
|---|
| 100 |
|
|---|
| 101 |
static int Open ( vlc_object_t * ); |
|---|
| 102 |
static void Close( vlc_object_t * ); |
|---|
| 103 |
|
|---|
| 104 |
vlc_module_begin(); |
|---|
| 105 |
set_shortname( N_("DVD without menus") ); |
|---|
| 106 |
set_description( N_("DVDRead Input (DVD without menu support)") ); |
|---|
| 107 |
set_category( CAT_INPUT ); |
|---|
| 108 |
set_subcategory( SUBCAT_INPUT_ACCESS ); |
|---|
| 109 |
add_integer( "dvdread-angle", 1, NULL, ANGLE_TEXT, |
|---|
| 110 |
ANGLE_LONGTEXT, false ); |
|---|
| 111 |
add_integer( "dvdread-caching", DEFAULT_PTS_DELAY / 1000, NULL, |
|---|
| 112 |
CACHING_TEXT, CACHING_LONGTEXT, true ); |
|---|
| 113 |
add_string( "dvdread-css-method", NULL, NULL, CSSMETHOD_TEXT, |
|---|
| 114 |
CSSMETHOD_LONGTEXT, true ); |
|---|
| 115 |
change_string_list( psz_css_list, psz_css_list_text, 0 ); |
|---|
| 116 |
set_capability( "access_demux", 0 ); |
|---|
| 117 |
add_shortcut( "dvd" ); |
|---|
| 118 |
add_shortcut( "dvdread" ); |
|---|
| 119 |
add_shortcut( "dvdsimple" ); |
|---|
| 120 |
set_callbacks( Open, Close ); |
|---|
| 121 |
vlc_module_end(); |
|---|
| 122 |
|
|---|
| 123 |
|
|---|
| 124 |
#define DVD_BLOCK_READ_ONCE 4 |
|---|
| 125 |
|
|---|
| 126 |
|
|---|
| 127 |
|
|---|
| 128 |
|
|---|
| 129 |
|
|---|
| 130 |
struct demux_sys_t |
|---|
| 131 |
{ |
|---|
| 132 |
|
|---|
| 133 |
dvd_reader_t *p_dvdread; |
|---|
| 134 |
dvd_file_t *p_title; |
|---|
| 135 |
|
|---|
| 136 |
ifo_handle_t *p_vmg_file; |
|---|
| 137 |
ifo_handle_t *p_vts_file; |
|---|
| 138 |
|
|---|
| 139 |
int i_title; |
|---|
| 140 |
int i_chapter, i_chapters; |
|---|
| 141 |
int i_angle, i_angles; |
|---|
| 142 |
|
|---|
| 143 |
tt_srpt_t *p_tt_srpt; |
|---|
| 144 |
pgc_t *p_cur_pgc; |
|---|
| 145 |
dsi_t dsi_pack; |
|---|
| 146 |
int i_ttn; |
|---|
| 147 |
|
|---|
| 148 |
int i_pack_len; |
|---|
| 149 |
int i_cur_block; |
|---|
| 150 |
int i_next_vobu; |
|---|
| 151 |
|
|---|
| 152 |
int i_mux_rate; |
|---|
| 153 |
|
|---|
| 154 |
|
|---|
| 155 |
int i_title_start_block; |
|---|
| 156 |
int i_title_end_block; |
|---|
| 157 |
int i_title_blocks; |
|---|
| 158 |
int i_title_offset; |
|---|
| 159 |
mtime_t i_title_cur_time; |
|---|
| 160 |
|
|---|
| 161 |
int i_title_start_cell; |
|---|
| 162 |
int i_title_end_cell; |
|---|
| 163 |
int i_cur_cell; |
|---|
| 164 |
int i_next_cell; |
|---|
| 165 |
mtime_t i_cell_cur_time; |
|---|
| 166 |
mtime_t i_cell_duration; |
|---|
| 167 |
|
|---|
| 168 |
|
|---|
| 169 |
ps_track_t tk[PS_TK_COUNT]; |
|---|
| 170 |
|
|---|
| 171 |
int i_titles; |
|---|
| 172 |
input_title_t **titles; |
|---|
| 173 |
|
|---|
| 174 |
|
|---|
| 175 |
int i_aspect; |
|---|
| 176 |
|
|---|
| 177 |
|
|---|
| 178 |
uint32_t clut[16]; |
|---|
| 179 |
}; |
|---|
| 180 |
|
|---|
| 181 |
static int Control ( demux_t *, int, va_list ); |
|---|
| 182 |
static int Demux ( demux_t * ); |
|---|
| 183 |
static int DemuxBlock( demux_t *, uint8_t *, int ); |
|---|
| 184 |
|
|---|
| 185 |
static void DemuxTitles( demux_t *, int * ); |
|---|
| 186 |
static void ESNew( demux_t *, int, int ); |
|---|
| 187 |
|
|---|
| 188 |
static int DvdReadSetArea ( demux_t *, int, int, int ); |
|---|
| 189 |
static void DvdReadSeek ( demux_t *, int ); |
|---|
| 190 |
static void DvdReadHandleDSI( demux_t *, uint8_t * ); |
|---|
| 191 |
static void DvdReadFindCell ( demux_t * ); |
|---|
| 192 |
|
|---|
| 193 |
|
|---|
| 194 |
|
|---|
| 195 |
|
|---|
| 196 |
static int Open( vlc_object_t *p_this ) |
|---|
| 197 |
{ |
|---|
| 198 |
demux_t *p_demux = (demux_t*)p_this; |
|---|
| 199 |
demux_sys_t *p_sys; |
|---|
| 200 |
char *psz_name; |
|---|
| 201 |
char *psz_dvdcss_env; |
|---|
| 202 |
dvd_reader_t *p_dvdread; |
|---|
| 203 |
ifo_handle_t *p_vmg_file; |
|---|
| 204 |
vlc_value_t val; |
|---|
| 205 |
|
|---|
| 206 |
if( !p_demux->psz_path || !*p_demux->psz_path ) |
|---|
| 207 |
{ |
|---|
| 208 |
|
|---|
| 209 |
if( !p_this->b_force ) return VLC_EGENERIC; |
|---|
| 210 |
|
|---|
| 211 |
psz_name = var_CreateGetString( p_this, "dvd" ); |
|---|
| 212 |
if( !psz_name ) |
|---|
| 213 |
{ |
|---|
| 214 |
psz_name = strdup(""); |
|---|
| 215 |
} |
|---|
| 216 |
} |
|---|
| 217 |
else |
|---|
| 218 |
psz_name = ToLocaleDup( p_demux->psz_path ); |
|---|
| 219 |
|
|---|
| 220 |
#ifdef WIN32 |
|---|
| 221 |
if( psz_name[0] && psz_name[1] == ':' && |
|---|
| 222 |
psz_name[2] == '\\' && psz_name[3] == '\0' ) psz_name[2] = '\0'; |
|---|
| 223 |
#endif |
|---|
| 224 |
|
|---|
| 225 |
|
|---|
| 226 |
psz_dvdcss_env = config_GetPsz( p_demux, "dvdread-css-method" ); |
|---|
| 227 |
if( psz_dvdcss_env && *psz_dvdcss_env ) |
|---|
| 228 |
#ifdef HAVE_SETENV |
|---|
| 229 |
setenv( "DVDCSS_METHOD", psz_dvdcss_env, 1 ); |
|---|
| 230 |
#else |
|---|
| 231 |
{ |
|---|
| 232 |
|
|---|
| 233 |
char *psz_env; |
|---|
| 234 |
psz_env = malloc( strlen("DVDCSS_METHOD=") + |
|---|
| 235 |
strlen( psz_dvdcss_env ) + 1 ); |
|---|
| 236 |
if( !psz_env ) |
|---|
| 237 |
{ |
|---|
| 238 |
free( psz_dvdcss_env ); |
|---|
| 239 |
return VLC_ENOMEM; |
|---|
| 240 |
} |
|---|
| 241 |
sprintf( psz_env, "%s%s", "DVDCSS_METHOD=", psz_dvdcss_env ); |
|---|
| 242 |
putenv( psz_env ); |
|---|
| 243 |
} |
|---|
| 244 |
#endif |
|---|
| 245 |
free( psz_dvdcss_env ); |
|---|
| 246 |
|
|---|
| 247 |
|
|---|
| 248 |
if( !(p_dvdread = DVDOpen( psz_name )) ) |
|---|
| 249 |
{ |
|---|
| 250 |
msg_Err( p_demux, "DVDRead cannot open source: %s", psz_name ); |
|---|
| 251 |
intf_UserFatal( p_demux, false, _("Playback failure"), |
|---|
| 252 |
_("DVDRead could not open the disk \"%s\"."), psz_name ); |
|---|
| 253 |
free( psz_name ); |
|---|
| 254 |
return VLC_EGENERIC; |
|---|
| 255 |
} |
|---|
| 256 |
free( psz_name ); |
|---|
| 257 |
|
|---|
| 258 |
|
|---|
| 259 |
if( !( p_vmg_file = ifoOpen( p_dvdread, 0 ) ) ) |
|---|
| 260 |
{ |
|---|
| 261 |
msg_Warn( p_demux, "cannot open VMG info" ); |
|---|
| 262 |
return VLC_EGENERIC; |
|---|
| 263 |
} |
|---|
| 264 |
msg_Dbg( p_demux, "VMG opened" ); |
|---|
| 265 |
|
|---|
| 266 |
|
|---|
| 267 |
DEMUX_INIT_COMMON(); p_sys = p_demux->p_sys; |
|---|
| 268 |
|
|---|
| 269 |
ps_track_init( p_sys->tk ); |
|---|
| 270 |
p_sys->i_aspect = -1; |
|---|
| 271 |
p_sys->i_title_cur_time = (mtime_t) 0; |
|---|
| 272 |
p_sys->i_cell_cur_time = (mtime_t) 0; |
|---|
| 273 |
p_sys->i_cell_duration = (mtime_t) 0; |
|---|
| 274 |
|
|---|
| 275 |
p_sys->p_dvdread = p_dvdread; |
|---|
| 276 |
p_sys->p_vmg_file = p_vmg_file; |
|---|
| 277 |
p_sys->p_title = NULL; |
|---|
| 278 |
p_sys->p_vts_file = NULL; |
|---|
| 279 |
|
|---|
| 280 |
p_sys->i_title = p_sys->i_chapter = -1; |
|---|
| 281 |
p_sys->i_mux_rate = 0; |
|---|
| 282 |
|
|---|
| 283 |
var_Create( p_demux, "dvdread-angle", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT ); |
|---|
| 284 |
var_Get( p_demux, "dvdread-angle", &val ); |
|---|
| 285 |
p_sys->i_angle = val.i_int > 0 ? val.i_int : 1; |
|---|
| 286 |
|
|---|
| 287 |
DemuxTitles( p_demux, &p_sys->i_angle ); |
|---|
| 288 |
if( DvdReadSetArea( p_demux, 0, 0, p_sys->i_angle ) != VLC_SUCCESS ) |
|---|
| 289 |
{ |
|---|
| 290 |
Close( p_this ); |
|---|
| 291 |
msg_Err( p_demux, "DvdReadSetArea(0,0,%i) failed (can't decrypt DVD?)", |
|---|
| 292 |
p_sys->i_angle ); |
|---|
| 293 |
return VLC_EGENERIC; |
|---|
| 294 |
} |
|---|
| 295 |
|
|---|
| 296 |
|
|---|
| 297 |
var_Create( p_demux, "dvdread-caching", |
|---|
| 298 |
VLC_VAR_INTEGER|VLC_VAR_DOINHERIT ); |
|---|
| 299 |
|
|---|
| 300 |
return VLC_SUCCESS; |
|---|
| 301 |
} |
|---|
| 302 |
|
|---|
| 303 |
|
|---|
| 304 |
|
|---|
| 305 |
|
|---|
| 306 |
static void Close( vlc_object_t *p_this ) |
|---|
| 307 |
{ |
|---|
| 308 |
demux_t *p_demux = (demux_t*)p_this; |
|---|
| 309 |
demux_sys_t *p_sys = p_demux->p_sys; |
|---|
| 310 |
int i; |
|---|
| 311 |
|
|---|
| 312 |
for( i = 0; i < PS_TK_COUNT; i++ ) |
|---|
| 313 |
{ |
|---|
| 314 |
ps_track_t *tk = &p_sys->tk[i]; |
|---|
| 315 |
if( tk->b_seen ) |
|---|
| 316 |
{ |
|---|
| 317 |
es_format_Clean( &tk->fmt ); |
|---|
| 318 |
if( tk->es ) es_out_Del( p_demux->out, tk->es ); |
|---|
| 319 |
} |
|---|
| 320 |
} |
|---|
| 321 |
|
|---|
| 322 |
|
|---|
| 323 |
if( p_sys->p_title ) DVDCloseFile( p_sys->p_title ); |
|---|
| 324 |
if( p_sys->p_vts_file ) ifoClose( p_sys->p_vts_file ); |
|---|
| 325 |
if( p_sys->p_vmg_file ) ifoClose( p_sys->p_vmg_file ); |
|---|
| 326 |
DVDClose( p_sys->p_dvdread ); |
|---|
| 327 |
|
|---|
| 328 |
free( p_sys ); |
|---|
| 329 |
} |
|---|
| 330 |
|
|---|
| 331 |
static int64_t dvdtime_to_time( dvd_time_t *dtime, uint8_t still_time ) |
|---|
| 332 |
{ |
|---|
| 333 |
|
|---|
| 334 |
#define BCD2D(__x__) (((__x__ & 0xf0) >> 4) * 10 + (__x__ & 0x0f)) |
|---|
| 335 |
|
|---|
| 336 |
double f_fps, f_ms; |
|---|
| 337 |
int64_t i_micro_second = 0; |
|---|
| 338 |
|
|---|
| 339 |
if (still_time == 0 || still_time == 0xFF) |
|---|
| 340 |
{ |
|---|
| 341 |
i_micro_second += (int64_t)(BCD2D(dtime->hour)) * 60 * 60 * 1000000; |
|---|
| 342 |
i_micro_second += (int64_t)(BCD2D(dtime->minute)) * 60 * 1000000; |
|---|
| 343 |
i_micro_second += (int64_t)(BCD2D(dtime->second)) * 1000000; |
|---|
| 344 |
|
|---|
| 345 |
switch((dtime->frame_u & 0xc0) >> 6) |
|---|
| 346 |
{ |
|---|
| 347 |
case 1: |
|---|
| 348 |
f_fps = 25.0; |
|---|
| 349 |
break; |
|---|
| 350 |
case 3: |
|---|
| 351 |
f_fps = 29.97; |
|---|
| 352 |
break; |
|---|
| 353 |
default: |
|---|
| 354 |
f_fps = 2500.0; |
|---|
| 355 |
break; |
|---|
| 356 |
} |
|---|
| 357 |
f_ms = BCD2D(dtime->frame_u&0x3f) * 1000.0 / f_fps; |
|---|
| 358 |
i_micro_second += (int64_t)(f_ms * 1000.0); |
|---|
| 359 |
} |
|---|
| 360 |
else |
|---|
| 361 |
{ |
|---|
| 362 |
i_micro_second = still_time; |
|---|
| 363 |
i_micro_second = (int64_t)((double)i_micro_second * 1000000.0); |
|---|
| 364 |
} |
|---|
| 365 |
|
|---|
| 366 |
return i_micro_second; |
|---|
| 367 |
} |
|---|
| 368 |
|
|---|
| 369 |
|
|---|
| 370 |
|
|---|
| 371 |
|
|---|
| 372 |
static int Control( demux_t *p_demux, int i_query, va_list args ) |
|---|
| 373 |
{ |
|---|
| 374 |
demux_sys_t *p_sys = p_demux->p_sys; |
|---|
| 375 |
double f, *pf; |
|---|
| 376 |
bool *pb; |
|---|
| 377 |
int64_t *pi64; |
|---|
| 378 |
input_title_t ***ppp_title; |
|---|
| 379 |
int *pi_int; |
|---|
| 380 |
int i; |
|---|
| 381 |
|
|---|
| 382 |
switch( i_query ) |
|---|
| 383 |
{ |
|---|
| 384 |
case DEMUX_GET_POSITION: |
|---|
| 385 |
{ |
|---|
| 386 |
pf = (double*) va_arg( args, double* ); |
|---|
| 387 |
|
|---|
| 388 |
if( p_sys->i_title_blocks > 0 ) |
|---|
| 389 |
*pf = (double)p_sys->i_title_offset / p_sys->i_title_blocks; |
|---|
| 390 |
else |
|---|
| 391 |
*pf = 0.0; |
|---|
| 392 |
|
|---|
| 393 |
return VLC_SUCCESS; |
|---|
| 394 |
} |
|---|
| 395 |
case DEMUX_SET_POSITION: |
|---|
| 396 |
{ |
|---|
| 397 |
f = (double)va_arg( args, double ); |
|---|
| 398 |
|
|---|
| 399 |
DvdReadSeek( p_demux, f * p_sys->i_title_blocks ); |
|---|
| 400 |
|
|---|
| 401 |
return VLC_SUCCESS; |
|---|
| 402 |
} |
|---|
| 403 |
case DEMUX_GET_TIME: |
|---|
| 404 |
pi64 = (int64_t*)va_arg( args, int64_t * ); |
|---|
| 405 |
if( p_demux->info.i_title >= 0 && p_demux->info.i_title < p_sys->i_titles ) |
|---|
| 406 |
{ |
|---|
| 407 |
*pi64 = (int64_t) dvdtime_to_time( &p_sys->p_cur_pgc->playback_time, 0 ) / |
|---|
| 408 |
p_sys->i_title_blocks * p_sys->i_title_offset; |
|---|
| 409 |
return VLC_SUCCESS; |
|---|
| 410 |
} |
|---|
| 411 |
*pi64 = 0; |
|---|
| 412 |
return VLC_EGENERIC; |
|---|
| 413 |
|
|---|
| 414 |
case DEMUX_GET_LENGTH: |
|---|
| 415 |
pi64 = (int64_t*)va_arg( args, int64_t * ); |
|---|
| 416 |
if( p_demux->info.i_title >= 0 && p_demux->info.i_title < p_sys->i_titles ) |
|---|
| 417 |
{ |
|---|
| 418 |
*pi64 = (int64_t)dvdtime_to_time( &p_sys->p_cur_pgc->playback_time, 0 ); |
|---|
| 419 |
return VLC_SUCCESS; |
|---|
| 420 |
} |
|---|
| 421 |
*pi64 = 0; |
|---|
| 422 |
return VLC_EGENERIC; |
|---|
| 423 |
|
|---|
| 424 |
|
|---|
| 425 |
case DEMUX_CAN_PAUSE: |
|---|
| 426 |
case DEMUX_CAN_SEEK: |
|---|
| 427 |
case DEMUX_CAN_CONTROL_PACE: |
|---|
| 428 |
|
|---|
| 429 |
pb = (bool*)va_arg( args, bool * ); |
|---|
| 430 |
*pb = true; |
|---|
| 431 |
return VLC_SUCCESS; |
|---|
| 432 |
|
|---|
| 433 |
case DEMUX_SET_PAUSE_STATE: |
|---|
| 434 |
return VLC_SUCCESS; |
|---|
| 435 |
|
|---|
| 436 |
case DEMUX_GET_TITLE_INFO: |
|---|
| 437 |
ppp_title = (input_title_t***)va_arg( args, input_title_t*** ); |
|---|
| 438 |
pi_int = (int*)va_arg( args, int* ); |
|---|
| 439 |
*((int*)va_arg( args, int* )) = 1; |
|---|
| 440 |
*((int*)va_arg( args, int* )) = 1; |
|---|
| 441 |
|
|---|
| 442 |
|
|---|
| 443 |
*pi_int = p_sys->i_titles; |
|---|
| 444 |
*ppp_title = malloc( sizeof(input_title_t **) * p_sys->i_titles ); |
|---|
| 445 |
for( i = 0; i < p_sys->i_titles; i++ ) |
|---|
| 446 |
{ |
|---|
| 447 |
(*ppp_title)[i] = vlc_input_title_Duplicate(p_sys->titles[i]); |
|---|
| 448 |
} |
|---|
| 449 |
return VLC_SUCCESS; |
|---|
| 450 |
|
|---|
| 451 |
case DEMUX_SET_TITLE: |
|---|
| 452 |
i = (int)va_arg( args, int ); |
|---|
| 453 |
if( DvdReadSetArea( p_demux, i, 0, -1 ) != VLC_SUCCESS ) |
|---|
| 454 |
{ |
|---|
| 455 |
msg_Warn( p_demux, "cannot set title/chapter" ); |
|---|
| 456 |
return VLC_EGENERIC; |
|---|
| 457 |
} |
|---|
| 458 |
p_demux->info.i_update |= |
|---|
| 459 |
INPUT_UPDATE_TITLE | INPUT_UPDATE_SEEKPOINT; |
|---|
| 460 |
p_demux->info.i_title = i; |
|---|
| 461 |
p_demux->info.i_seekpoint = 0; |
|---|
| 462 |
return VLC_SUCCESS; |
|---|
| 463 |
|
|---|
| 464 |
case DEMUX_SET_SEEKPOINT: |
|---|
| 465 |
i = (int)va_arg( args, int ); |
|---|
| 466 |
if( DvdReadSetArea( p_demux, -1, i, -1 ) != VLC_SUCCESS ) |
|---|
| 467 |
{ |
|---|
| 468 |
msg_Warn( p_demux, "cannot set title/chapter" ); |
|---|
| 469 |
return VLC_EGENERIC; |
|---|
| 470 |
} |
|---|
| 471 |
p_demux->info.i_update |= INPUT_UPDATE_SEEKPOINT; |
|---|
| 472 |
p_demux->info.i_seekpoint = i; |
|---|
| 473 |
return VLC_SUCCESS; |
|---|
| 474 |
|
|---|
| 475 |
case DEMUX_GET_PTS_DELAY: |
|---|
| 476 |
pi64 = (int64_t*)va_arg( args, int64_t * ); |
|---|
| 477 |
*pi64 = (int64_t)var_GetInteger( p_demux, "dvdread-caching" )*1000; |
|---|
| 478 |
return VLC_SUCCESS; |
|---|
| 479 |
|
|---|
| 480 |
|
|---|
| 481 |
default: |
|---|
| 482 |
return VLC_EGENERIC; |
|---|
| 483 |
} |
|---|
| 484 |
} |
|---|
| 485 |
|
|---|
| 486 |
|
|---|
| 487 |
|
|---|
| 488 |
|
|---|
| 489 |
static int Demux( demux_t *p_demux ) |
|---|
| 490 |
{ |
|---|
| 491 |
demux_sys_t *p_sys = p_demux->p_sys; |
|---|
| 492 |
|
|---|
| 493 |
uint8_t p_buffer[DVD_VIDEO_LB_LEN * DVD_BLOCK_READ_ONCE]; |
|---|
| 494 |
int i_blocks_once, i_read; |
|---|
| 495 |
int i; |
|---|
| 496 |
|
|---|
| 497 |
|
|---|
| 498 |
|
|---|
| 499 |
|
|---|
| 500 |
|
|---|
| 501 |
|
|---|
| 502 |
|
|---|
| 503 |
|
|---|
| 504 |
if( !p_sys->i_pack_len ) |
|---|
| 505 |
{ |
|---|
| 506 |
|
|---|
| 507 |
if( DVDReadBlocks( p_sys->p_title, p_sys->i_next_vobu, |
|---|
| 508 |
1, p_buffer ) != 1 ) |
|---|
| 509 |
{ |
|---|
| 510 |
msg_Err( p_demux, "read failed for block %d", p_sys->i_next_vobu ); |
|---|
| 511 |
intf_UserWarn( p_demux, _("Playback failure"), |
|---|
| 512 |
_("DVDRead could not read block %d."), |
|---|
| 513 |
p_sys->i_next_vobu ); |
|---|
| 514 |
return -1; |
|---|
| 515 |
} |
|---|
| 516 |
|
|---|
| 517 |
|
|---|
| 518 |
|
|---|
| 519 |
|
|---|
| 520 |
|
|---|
| 521 |
|
|---|
| 522 |
DvdReadHandleDSI( p_demux, p_buffer ); |
|---|
| 523 |
|
|---|
| 524 |
|
|---|
| 525 |
if( p_sys->i_cur_cell >= p_sys->p_cur_pgc->nr_of_cells ) |
|---|
| 526 |
{ |
|---|
| 527 |
if( p_sys->i_title + 1 >= p_sys->i_titles ) |
|---|
| 528 |
{ |
|---|
| 529 |
return 0; |
|---|
| 530 |
} |
|---|
| 531 |
|
|---|
| 532 |
DvdReadSetArea( p_demux, p_sys->i_title + 1, 0, -1 ); |
|---|
| 533 |
} |
|---|
| 534 |
|
|---|
| 535 |
if( p_sys->i_pack_len >= 1024 ) |
|---|
| 536 |
{ |
|---|
| 537 |
msg_Err( p_demux, "i_pack_len >= 1024 (%i). " |
|---|
| 538 |
"This shouldn't happen!", p_sys->i_pack_len ); |
|---|
| 539 |
return 0; |
|---|
| 540 |
} |
|---|
| 541 |
|
|---|
| 542 |
|
|---|
| 543 |
|
|---|
| 544 |
p_sys->i_cur_block++; |
|---|
| 545 |
p_sys->i_title_offset++; |
|---|
| 546 |
|
|---|
| 547 |
DemuxBlock( p_demux, p_buffer, DVD_VIDEO_LB_LEN ); |
|---|
| 548 |
} |
|---|
| 549 |
|
|---|
| 550 |
if( p_sys->i_cur_cell >= p_sys->p_cur_pgc->nr_of_cells ) |
|---|
| 551 |
{ |
|---|
| 552 |
if( p_sys->i_title + 1 >= p_sys->i_titles ) |
|---|
| 553 |
{ |
|---|
| 554 |
return 0; |
|---|
| 555 |
} |
|---|
| 556 |
|
|---|
| 557 |
DvdReadSetArea( p_demux, p_sys->i_title + 1, 0, -1 ); |
|---|
| 558 |
} |
|---|
| 559 |
|
|---|
| 560 |
|
|---|
| 561 |
|
|---|
| 562 |
|
|---|
| 563 |
i_blocks_once = __MIN( p_sys->i_pack_len, DVD_BLOCK_READ_ONCE ); |
|---|
| 564 |
p_sys->i_pack_len -= i_blocks_once; |
|---|
| 565 |
|
|---|
| 566 |
|
|---|
| 567 |
i_read = DVDReadBlocks( p_sys->p_title, p_sys->i_cur_block, |
|---|
| 568 |
i_blocks_once, p_buffer ); |
|---|
| 569 |
if( i_read != i_blocks_once ) |
|---|
| 570 |
{ |
|---|
| 571 |
msg_Err( p_demux, "read failed for %d/%d blocks at 0x%02x", |
|---|
| 572 |
i_read, i_blocks_once, p_sys->i_cur_block ); |
|---|
| 573 |
intf_UserFatal( p_demux, false, _("Playback failure"), |
|---|
| 574 |
_("DVDRead could not read %d/%d blocks at 0x%02x."), |
|---|
| 575 |
i_read, i_blocks_once, p_sys->i_cur_block ); |
|---|
| 576 |
return -1; |
|---|
| 577 |
} |
|---|
| 578 |
|
|---|
| 579 |
p_sys->i_cur_block += i_read; |
|---|
| 580 |
p_sys->i_title_offset += i_read; |
|---|
| 581 |
|
|---|
| 582 |
#if 0 |
|---|
| 583 |
msg_Dbg( p_demux, "i_blocks: %d len: %d current: 0x%02x", |
|---|
| 584 |
i_read, p_sys->i_pack_len, p_sys->i_cur_block ); |
|---|
| 585 |
#endif |
|---|
| 586 |
|
|---|
| 587 |
for( i = 0; i < i_read; i++ ) |
|---|
| 588 |
{ |
|---|
| 589 |
DemuxBlock( p_demux, p_buffer + i * DVD_VIDEO_LB_LEN, |
|---|
| 590 |
DVD_VIDEO_LB_LEN ); |
|---|
| 591 |
} |
|---|
| 592 |
|
|---|
| 593 |
#undef p_pgc |
|---|
| 594 |
|
|---|
| 595 |
return 1; |
|---|
| 596 |
} |
|---|
| 597 |
|
|---|
| 598 |
|
|---|
| 599 |
|
|---|
| 600 |
|
|---|
| 601 |
static int DemuxBlock( demux_t *p_demux, uint8_t *pkt, int i_pkt ) |
|---|
| 602 |
{ |
|---|
| 603 |
demux_sys_t *p_sys = p_demux->p_sys; |
|---|
| 604 |
uint8_t *p = pkt; |
|---|
| 605 |
|
|---|
| 606 |
while( p < &pkt[i_pkt] ) |
|---|
| 607 |
{ |
|---|
| 608 |
int i_size = ps_pkt_size( p, &pkt[i_pkt] - p ); |
|---|
| 609 |
block_t *p_pkt; |
|---|
| 610 |
if( i_size <= 0 ) |
|---|
| 611 |
{ |
|---|
| 612 |
break; |
|---|
| 613 |
} |
|---|
| 614 |
|
|---|
| 615 |
|
|---|
| 616 |
p_pkt = block_New( p_demux, i_size ); |
|---|
| 617 |
memcpy( p_pkt->p_buffer, p, i_size); |
|---|
| 618 |
|
|---|
| 619 |
|
|---|
| 620 |
switch( 0x100 | p[3] ) |
|---|
| 621 |
{ |
|---|
| 622 |
case 0x1b9: |
|---|
| 623 |
case 0x1bb: |
|---|
| 624 |
case 0x1bc: |
|---|
| 625 |
|
|---|
| 626 |
#ifdef DVDREAD_DEBUG |
|---|
| 627 |
if( p[3] == 0xbc ) |
|---|
| 628 |
{ |
|---|
| 629 |
msg_Warn( p_demux, "received a PSM packet" ); |
|---|
| 630 |
} |
|---|
| 631 |
else if( p[3] == 0xbb ) |
|---|
| 632 |
{ |
|---|
| 633 |
msg_Warn( p_demux, "received a SYSTEM packet" ); |
|---|
| 634 |
} |
|---|
| 635 |
#endif |
|---|
| 636 |
block_Release( p_pkt ); |
|---|
| 637 |
break; |
|---|
| 638 |
|
|---|
| 639 |
case 0x1ba: |
|---|
| 640 |
{ |
|---|
| 641 |
int64_t i_scr; |
|---|
| 642 |
int i_mux_rate; |
|---|
| 643 |
if( !ps_pkt_parse_pack( p_pkt, &i_scr, &i_mux_rate ) ) |
|---|
| 644 |
{ |
|---|
| 645 |
es_out_Control( p_demux->out, ES_OUT_SET_PCR, i_scr ); |
|---|
| 646 |
if( i_mux_rate > 0 ) p_sys->i_mux_rate = i_mux_rate; |
|---|
| 647 |
} |
|---|
| 648 |
block_Release( p_pkt ); |
|---|
| 649 |
break; |
|---|
| 650 |
} |
|---|
| 651 |
default: |
|---|
| 652 |
{ |
|---|
| 653 |
int i_id = ps_pkt_id( p_pkt ); |
|---|
| 654 |
if( i_id >= 0xc0 ) |
|---|
| 655 |
{ |
|---|
| 656 |
ps_track_t *tk = &p_sys->tk[PS_ID_TO_TK(i_id)]; |
|---|
| 657 |
|
|---|
| 658 |
if( !tk->b_seen ) |
|---|
| 659 |
{ |
|---|
| 660 |
ESNew( p_demux, i_id, 0 ); |
|---|
| 661 |
} |
|---|
| 662 |
if( tk->b_seen && tk->es && |
|---|
| 663 |
!ps_pkt_parse_pes( p_pkt, tk->i_skip ) ) |
|---|
| 664 |
{ |
|---|
| 665 |
es_out_Send( p_demux->out, tk->es, p_pkt ); |
|---|
| 666 |
} |
|---|
| 667 |
else |
|---|
| 668 |
{ |
|---|
| 669 |
block_Release( p_pkt ); |
|---|
| 670 |
} |
|---|
| 671 |
} |
|---|
| 672 |
else |
|---|
| 673 |
{ |
|---|
| 674 |
block_Release( p_pkt ); |
|---|
| 675 |
} |
|---|
| 676 |
break; |
|---|
| 677 |
} |
|---|
| 678 |
} |
|---|
| 679 |
|
|---|
| 680 |
p += i_size; |
|---|
| 681 |
} |
|---|
| 682 |
|
|---|
| 683 |
return VLC_SUCCESS; |
|---|
| 684 |
} |
|---|
| 685 |
|
|---|
| 686 |
|
|---|
| 687 |
|
|---|
| 688 |
|
|---|
| 689 |
static void ESNew( demux_t *p_demux, int i_id, int i_lang ) |
|---|
| 690 |
{ |
|---|
| 691 |
demux_sys_t *p_sys = p_demux->p_sys; |
|---|
| 692 |
ps_track_t *tk = &p_sys->tk[PS_ID_TO_TK(i_id)]; |
|---|
| 693 |
char psz_language[3]; |
|---|
| 694 |
|
|---|
| 695 |
if( tk->b_seen ) return; |
|---|
| 696 |
|
|---|
| 697 |
if( ps_track_fill( tk, 0, i_id ) ) |
|---|
| 698 |
{ |
|---|
| 699 |
msg_Warn( p_demux, "unknown codec for id=0x%x", i_id ); |
|---|
| 700 |
return; |
|---|
| 701 |
} |
|---|
| 702 |
|
|---|
| 703 |
psz_language[0] = psz_language[1] = psz_language[2] = 0; |
|---|
| 704 |
if( i_lang && i_lang != 0xffff ) |
|---|
| 705 |
{ |
|---|
| 706 |
psz_language[0] = (i_lang >> 8)&0xff; |
|---|
| 707 |
psz_language[1] = (i_lang )&0xff; |
|---|
| 708 |
} |
|---|
| 709 |
|
|---|
| 710 |
|
|---|
| 711 |
if( tk->fmt.i_cat == VIDEO_ES ) |
|---|
| 712 |
{ |
|---|
| 713 |
switch( p_sys->i_aspect ) |
|---|
| 714 |
{ |
|---|
| 715 |
case 1: tk->fmt.video.i_aspect = VOUT_ASPECT_FACTOR; break; |
|---|
| 716 |
case 2: tk->fmt.video.i_aspect = VOUT_ASPECT_FACTOR * 4 / 3; break; |
|---|
| 717 |
case 3: tk->fmt.video.i_aspect = VOUT_ASPECT_FACTOR * 16 / 9; break; |
|---|
| 718 |
case 4: tk->fmt.video.i_aspect = VOUT_ASPECT_FACTOR * 221 / 10; break; |
|---|
| 719 |
default: |
|---|
| 720 |
tk->fmt.video.i_aspect = 0; |
|---|
| 721 |
break; |
|---|
| 722 |
} |
|---|
| 723 |
} |
|---|
| 724 |
else if( tk->fmt.i_cat == AUDIO_ES ) |
|---|
| 725 |
{ |
|---|
| 726 |
int i_audio = -1; |
|---|
| 727 |
|
|---|
| 728 |
if( (i_id&0xbdf8) == 0xbd88 ) |
|---|
| 729 |
{ |
|---|
| 730 |
i_audio = i_id&0x07; |
|---|
| 731 |
} |
|---|
| 732 |
else if( (i_id&0xbdf0) == 0xbd80 ) |
|---|
| 733 |
{ |
|---|
| 734 |
i_audio = i_id&0xf; |
|---|
| 735 |
} |
|---|
| 736 |
else if( (i_id&0xbdf0) == 0xbda0 ) |
|---|
| 737 |
{ |
|---|
| 738 |
i_audio = i_id&0x1f; |
|---|
| 739 |
} |
|---|
| 740 |
else if( ( i_id&0xe0 ) == 0xc0 ) |
|---|
| 741 |
{ |
|---|
| 742 |
i_audio = i_id&0x1f; |
|---|
| 743 |
} |
|---|
| 744 |
|
|---|
| 745 |
if( psz_language[0] ) tk->fmt.psz_language = strdup( psz_language ); |
|---|
| 746 |
} |
|---|
| 747 |
else if( tk->fmt.i_cat == SPU_ES ) |
|---|
| 748 |
{ |
|---|
| 749 |
|
|---|
| 750 |
tk->fmt.subs.spu.palette[0] = 0xBeef; |
|---|
| 751 |
memcpy( &tk->fmt.subs.spu.palette[1], p_sys->clut, |
|---|
| 752 |
16 * sizeof( uint32_t ) ); |
|---|
| 753 |
|
|---|
| 754 |
if( psz_language[0] ) tk->fmt.psz_language = strdup( psz_language ); |
|---|
| 755 |
} |
|---|
| 756 |
|
|---|
| 757 |
tk->es = es_out_Add( p_demux->out, &tk->fmt ); |
|---|
| 758 |
tk->b_seen = true; |
|---|
| 759 |
} |
|---|
| 760 |
|
|---|
| 761 |
|
|---|
| 762 |
|
|---|
| 763 |
|
|---|
| 764 |
|
|---|
| 765 |
|
|---|
| 766 |
|
|---|
| 767 |
static int DvdReadSetArea( demux_t *p_demux, int i_title, int i_chapter, |
|---|
| 768 |
int i_angle ) |
|---|
| 769 |
{ |
|---|
| 770 |
demux_sys_t *p_sys = p_demux->p_sys; |
|---|
| 771 |
int pgc_id = 0, pgn = 0; |
|---|
| 772 |
int i; |
|---|
| 773 |
|
|---|
| 774 |
#define p_pgc p_sys->p_cur_pgc |
|---|
| 775 |
#define p_vmg p_sys->p_vmg_file |
|---|
| 776 |
#define p_vts p_sys->p_vts_file |
|---|
| 777 |
|
|---|
| 778 |
if( i_title >= 0 && i_title < p_sys->i_titles && |
|---|
| 779 |
i_title != p_sys->i_title ) |
|---|
| 780 |
{ |
|---|
| 781 |
int i_start_cell, i_end_cell; |
|---|
| 782 |
|
|---|
| 783 |
if( p_sys->p_title != NULL ) DVDCloseFile( p_sys->p_title ); |
|---|
| 784 |
if( p_vts != NULL ) ifoClose( p_vts ); |
|---|
| 785 |
p_sys->i_title = i_title; |
|---|
| 786 |
|
|---|
| 787 |
|
|---|
| 788 |
|
|---|
| 789 |
|
|---|
| 790 |
msg_Dbg( p_demux, "open VTS %d, for title %d", |
|---|
| 791 |
p_vmg->tt_srpt->title[i_title].title_set_nr, i_title + 1 ); |
|---|
| 792 |
|
|---|
| 793 |
|
|---|
| 794 |
if( !( p_vts = ifoOpen( p_sys->p_dvdread, |
|---|
| 795 |
p_vmg->tt_srpt->title[i_title].title_set_nr ) ) ) |
|---|
| 796 |
{ |
|---|
| 797 |
msg_Err( p_demux, "fatal error in vts ifo" ); |
|---|
| 798 |
return VLC_EGENERIC; |
|---|
| 799 |
} |
|---|
| 800 |
|
|---|
| 801 |
|
|---|
| 802 |
p_sys->i_ttn = p_vmg->tt_srpt->title[i_title].vts_ttn; |
|---|
| 803 |
|
|---|
| 804 |
|
|---|
| 805 |
pgc_id = p_vts->vts_ptt_srpt->title[p_sys->i_ttn - 1].ptt[0].pgcn; |
|---|
| 806 |
pgn = p_vts->vts_ptt_srpt->title[p_sys->i_ttn - 1].ptt[0].pgn; |
|---|
| 807 |
p_pgc = p_vts->vts_pgcit->pgci_srp[pgc_id - 1].pgc; |
|---|
| 808 |
|
|---|
| 809 |
p_sys->i_title_start_cell = |
|---|
| 810 |
i_start_cell = p_pgc->program_map[pgn - 1] - 1; |
|---|
| 811 |
p_sys->i_title_start_block = |
|---|
| 812 |
p_pgc->cell_playback[i_start_cell].first_sector; |
|---|
| 813 |
|
|---|
| 814 |
p_sys->i_title_end_cell = |
|---|
| 815 |
i_end_cell = p_pgc->nr_of_cells - 1; |
|---|
| 816 |
p_sys->i_title_end_block = |
|---|
| 817 |
p_pgc->cell_playback[i_end_cell].last_sector; |
|---|
| 818 |
|
|---|
| 819 |
p_sys->i_title_offset = 0; |
|---|
| 820 |
|
|---|
| 821 |
p_sys->i_title_blocks = 0; |
|---|
| 822 |
for( i = i_start_cell; i <= i_end_cell; i++ ) |
|---|
| 823 |
{ |
|---|
| 824 |
p_sys->i_title_blocks += p_pgc->cell_playback[i].last_sector - |
|---|
| 825 |
p_pgc->cell_playback[i].first_sector + 1; |
|---|
| 826 |
} |
|---|
| 827 |
|
|---|
| 828 |
msg_Dbg( p_demux, "title %d vts_title %d pgc %d pgn %d " |
|---|
| 829 |
"start %d end %d blocks: %d", |
|---|
| 830 |
i_title + 1, p_sys->i_ttn, pgc_id, pgn, |
|---|
| 831 |
p_sys->i_title_start_block, p_sys->i_title_end_block, |
|---|
| 832 |
p_sys->i_title_blocks ); |
|---|
| 833 |
|
|---|
| 834 |
|
|---|
| 835 |
|
|---|
| 836 |
|
|---|
| 837 |
p_sys->i_chapter = 0; |
|---|
| 838 |
p_sys->i_chapters = |
|---|
| 839 |
p_vts->vts_ptt_srpt->title[p_sys->i_ttn - 1].nr_of_ptts; |
|---|
| 840 |
|
|---|
| 841 |
pgc_id = p_vts->vts_ptt_srpt->title[ |
|---|
| 842 |
p_sys->i_ttn - 1].ptt[p_sys->i_chapter].pgcn; |
|---|
| 843 |
pgn = p_vts->vts_ptt_srpt->title[ |
|---|
| 844 |
p_sys->i_ttn - 1].ptt[p_sys->i_chapter].pgn; |
|---|
| 845 |
|
|---|
| 846 |
p_pgc = p_vts->vts_pgcit->pgci_srp[pgc_id - 1].pgc; |
|---|
| 847 |
p_sys->i_pack_len = 0; |
|---|
| 848 |
p_sys->i_next_cell = |
|---|
| 849 |
p_sys->i_cur_cell = p_pgc->program_map[pgn - 1] - 1; |
|---|
| 850 |
DvdReadFindCell( p_demux ); |
|---|
| 851 |
|
|---|
| 852 |
p_sys->i_next_vobu = p_sys->i_cur_block = |
|---|
| 853 |
p_pgc->cell_playback[p_sys->i_cur_cell].first_sector; |
|---|
| 854 |
|
|---|
| 855 |
|
|---|
| 856 |
|
|---|
| 857 |
|
|---|
| 858 |
p_sys->i_angles = p_vmg->tt_srpt->title[i_title].nr_of_angles; |
|---|
| 859 |
if( p_sys->i_angle > p_sys->i_angles ) p_sys->i_angle = 1; |
|---|
| 860 |
|
|---|
| 861 |
|
|---|
| 862 |
|
|---|
| 863 |
|
|---|
| 864 |
if( !( p_sys->p_title = DVDOpenFile( p_sys->p_dvdread, |
|---|
| 865 |
p_vmg->tt_srpt->title[i_title].title_set_nr, |
|---|
| 866 |
DVD_READ_TITLE_VOBS ) ) ) |
|---|
| 867 |
{ |
|---|
| 868 |
msg_Err( p_demux, "cannot open title (VTS_%02d_1.VOB)", |
|---|
| 869 |
p_vmg->tt_srpt->title[i_title].title_set_nr ); |
|---|
| 870 |
return VLC_EGENERIC; |
|---|
| 871 |
} |
|---|
| 872 |
|
|---|
| 873 |
|
|---|
| 874 |
|
|---|
| 875 |
|
|---|
| 876 |
|
|---|
| 877 |
|
|---|
| 878 |
|
|---|
| 879 |
es_out_Control( p_demux->out, ES_OUT_RESET_PCR ); |
|---|
| 880 |
|
|---|
| 881 |
for( i = 0; i < PS_TK_COUNT; i++ ) |
|---|
| 882 |
{ |
|---|
| 883 |
ps_track_t *tk = &p_sys->tk[i]; |
|---|
| 884 |
if( tk->b_seen ) |
|---|
| 885 |
{ |
|---|
| 886 |
es_format_Clean( &tk->fmt ); |
|---|
| 887 |
if( tk->es ) es_out_Del( p_demux->out, tk->es ); |
|---|
| 888 |
} |
|---|
| 889 |
tk->b_seen = false; |
|---|
| 890 |
} |
|---|
| 891 |
|
|---|
| 892 |
if( p_demux->info.i_title != i_title ) |
|---|
| 893 |
{ |
|---|
| 894 |
p_demux->info.i_update |= |
|---|
| 895 |
INPUT_UPDATE_TITLE | INPUT_UPDATE_SEEKPOINT; |
|---|
| 896 |
p_demux->info.i_title = i_title; |
|---|
| 897 |
p_demux->info.i_seekpoint = 0; |
|---|
| 898 |
} |
|---|
| 899 |
|
|---|
| 900 |
|
|---|
| 901 |
|
|---|
| 902 |
|
|---|
| 903 |
ESNew( p_demux, 0xe0, 0 ); |
|---|
| 904 |
p_sys->i_aspect = p_vts->vtsi_mat->vts_video_attr.display_aspect_ratio; |
|---|
| 905 |
|
|---|
| 906 |
#define audio_control \ |
|---|
| 907 |
p_sys->p_vts_file->vts_pgcit->pgci_srp[pgc_id-1].pgc->audio_control[i-1] |
|---|
| 908 |
|
|---|
| 909 |
|
|---|
| 910 |
for( i = 1; i <= p_vts->vtsi_mat->nr_of_vts_audio_streams; i++ ) |
|---|
| 911 |
{ |
|---|
| 912 |
int i_position = 0; |
|---|
| 913 |
uint16_t i_id; |
|---|
| 914 |
|
|---|
| 915 |
|
|---|
| 916 |
|
|---|
| 917 |
|
|---|
| 918 |
if( audio_control & 0x8000 ) |
|---|
| 919 |
|
|---|