[demux/avi] Enable dirac support (Set PTS on first output block)
[vlc/davidf-public.git] / modules / demux / ps.c
blob274dc0bfee9c7f24a516e6b3e2a667aab26b0e16
1 /*****************************************************************************
2 * ps.c: Program Stream demux module for VLC.
3 *****************************************************************************
4 * Copyright (C) 2004 the VideoLAN team
5 * $Id$
7 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 /*****************************************************************************
25 * Preamble
26 *****************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_demux.h>
36 #include "ps.h"
38 /* TODO:
39 * - re-add pre-scanning.
40 * - ...
43 #define TIME_TEXT N_("Trust MPEG timestamps")
44 #define TIME_LONGTEXT N_("Normally we use the timestamps of the MPEG files " \
45 "to calculate position and duration. However sometimes this might not " \
46 "be usable. Disable this option to calculate from the bitrate instead." )
48 /*****************************************************************************
49 * Module descriptor
50 *****************************************************************************/
51 static int OpenForce( vlc_object_t * );
52 static int Open ( vlc_object_t * );
53 static void Close ( vlc_object_t * );
55 vlc_module_begin();
56 set_description( N_("MPEG-PS demuxer") );
57 set_category( CAT_INPUT );
58 set_subcategory( SUBCAT_INPUT_DEMUX );
59 set_capability( "demux", 1 );
60 set_callbacks( OpenForce, Close );
61 add_shortcut( "ps" );
63 add_bool( "ps-trust-timestamps", true, NULL, TIME_TEXT,
64 TIME_LONGTEXT, true );
66 add_submodule();
67 set_description( N_("MPEG-PS demuxer") );
68 set_capability( "demux", 8 );
69 set_callbacks( Open, Close );
70 vlc_module_end();
72 /*****************************************************************************
73 * Local prototypes
74 *****************************************************************************/
76 struct demux_sys_t
78 ps_psm_t psm;
79 ps_track_t tk[PS_TK_COUNT];
81 int64_t i_scr;
82 int i_mux_rate;
83 int64_t i_length;
84 int i_time_track;
85 int64_t i_current_pts;
87 bool b_lost_sync;
88 bool b_have_pack;
89 bool b_seekable;
92 static int Demux ( demux_t *p_demux );
93 static int Control( demux_t *p_demux, int i_query, va_list args );
95 static int ps_pkt_resynch( stream_t *, uint32_t *pi_code );
96 static block_t *ps_pkt_read ( stream_t *, uint32_t i_code );
98 /*****************************************************************************
99 * Open
100 *****************************************************************************/
101 static int OpenCommon( vlc_object_t *p_this, bool b_force )
103 demux_t *p_demux = (demux_t*)p_this;
104 demux_sys_t *p_sys;
106 const uint8_t *p_peek;
108 if( stream_Peek( p_demux->s, &p_peek, 4 ) < 4 )
110 msg_Err( p_demux, "cannot peek" );
111 return VLC_EGENERIC;
114 if( memcmp( p_peek, "\x00\x00\x01", 3 ) || ( p_peek[3] < 0xb9 ) )
116 if( !b_force )
117 return VLC_EGENERIC;
119 msg_Warn( p_demux, "this does not look like an MPEG PS stream, "
120 "continuing anyway" );
123 /* Fill p_demux field */
124 p_demux->pf_demux = Demux;
125 p_demux->pf_control = Control;
126 p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
127 if( !p_sys ) return VLC_ENOMEM;
129 /* Init p_sys */
130 p_sys->i_mux_rate = 0;
131 p_sys->i_scr = -1;
132 p_sys->i_length = -1;
133 p_sys->i_current_pts = (mtime_t) 0;
134 p_sys->i_time_track = -1;
136 p_sys->b_lost_sync = false;
137 p_sys->b_have_pack = false;
138 p_sys->b_seekable = false;
140 stream_Control( p_demux->s, STREAM_CAN_SEEK, &p_sys->b_seekable );
142 ps_psm_init( &p_sys->psm );
143 ps_track_init( p_sys->tk );
145 /* TODO prescanning of ES */
147 return VLC_SUCCESS;
150 static int OpenForce( vlc_object_t *p_this )
152 return OpenCommon( p_this, true );
155 static int Open( vlc_object_t *p_this )
157 return OpenCommon( p_this, ((demux_t *)p_this)->b_force );
160 /*****************************************************************************
161 * Close
162 *****************************************************************************/
163 static void Close( vlc_object_t *p_this )
165 demux_t *p_demux = (demux_t*)p_this;
166 demux_sys_t *p_sys = p_demux->p_sys;
167 int i;
169 for( i = 0; i < PS_TK_COUNT; i++ )
171 ps_track_t *tk = &p_sys->tk[i];
172 if( tk->b_seen )
174 es_format_Clean( &tk->fmt );
175 if( tk->es ) es_out_Del( p_demux->out, tk->es );
179 ps_psm_destroy( &p_sys->psm );
181 free( p_sys );
184 static int Demux2( demux_t *p_demux, bool b_end )
186 demux_sys_t *p_sys = p_demux->p_sys;
187 int i_ret, i_id;
188 uint32_t i_code;
189 block_t *p_pkt;
191 i_ret = ps_pkt_resynch( p_demux->s, &i_code );
192 if( i_ret < 0 )
194 return 0;
196 else if( i_ret == 0 )
198 if( !p_sys->b_lost_sync )
199 msg_Warn( p_demux, "garbage at input, trying to resync..." );
201 p_sys->b_lost_sync = true;
202 return 1;
205 if( p_sys->b_lost_sync ) msg_Warn( p_demux, "found sync code" );
206 p_sys->b_lost_sync = false;
208 if( ( p_pkt = ps_pkt_read( p_demux->s, i_code ) ) == NULL )
210 return 0;
212 if( (i_id = ps_pkt_id( p_pkt )) >= 0xc0 )
214 ps_track_t *tk = &p_sys->tk[PS_ID_TO_TK(i_id)];
215 if( !ps_pkt_parse_pes( p_pkt, tk->i_skip ) )
217 if( b_end && p_pkt->i_pts > tk->i_last_pts )
219 tk->i_last_pts = p_pkt->i_pts;
221 else if ( tk->i_first_pts == -1 )
223 tk->i_first_pts = p_pkt->i_pts;
227 block_Release( p_pkt );
228 return 1;
231 static void FindLength( demux_t *p_demux )
233 demux_sys_t *p_sys = p_demux->p_sys;
234 int64_t i_current_pos = -1, i_size = 0, i_end = 0;
235 int i;
237 if( !var_CreateGetInteger( p_demux, "ps-trust-timestamps" ) )
238 return;
240 if( p_sys->i_length == -1 ) /* First time */
242 p_sys->i_length = 0;
243 /* Check beginning */
244 i = 0;
245 i_current_pos = stream_Tell( p_demux->s );
246 while( vlc_object_alive (p_demux) && i < 40 && Demux2( p_demux, false ) > 0 ) i++;
248 /* Check end */
249 i_size = stream_Size( p_demux->s );
250 i_end = __MAX( 0, __MIN( 200000, i_size ) );
251 stream_Seek( p_demux->s, i_size - i_end );
252 i = 0;
254 while( vlc_object_alive (p_demux) && i < 40 && Demux2( p_demux, true ) > 0 );
255 if( i_current_pos >= 0 ) stream_Seek( p_demux->s, i_current_pos );
258 for( i = 0; i < PS_TK_COUNT; i++ )
260 ps_track_t *tk = &p_sys->tk[i];
261 if( tk->i_first_pts >= 0 && tk->i_last_pts > 0 )
262 if( tk->i_last_pts > tk->i_first_pts )
264 int64_t i_length = (int64_t)tk->i_last_pts - tk->i_first_pts;
265 if( i_length > p_sys->i_length )
267 p_sys->i_length = i_length;
268 p_sys->i_time_track = i;
269 msg_Dbg( p_demux, "we found a length of: %"PRId64, p_sys->i_length );
275 /*****************************************************************************
276 * Demux:
277 *****************************************************************************/
278 static int Demux( demux_t *p_demux )
280 demux_sys_t *p_sys = p_demux->p_sys;
281 int i_ret, i_id, i_mux_rate;
282 uint32_t i_code;
283 block_t *p_pkt;
285 i_ret = ps_pkt_resynch( p_demux->s, &i_code );
286 if( i_ret < 0 )
288 return 0;
290 else if( i_ret == 0 )
292 if( !p_sys->b_lost_sync )
293 msg_Warn( p_demux, "garbage at input, trying to resync..." );
295 p_sys->b_lost_sync = true;
296 return 1;
299 if( p_sys->b_lost_sync ) msg_Warn( p_demux, "found sync code" );
300 p_sys->b_lost_sync = false;
302 if( p_sys->i_length < 0 && p_sys->b_seekable )
303 FindLength( p_demux );
305 if( ( p_pkt = ps_pkt_read( p_demux->s, i_code ) ) == NULL )
307 return 0;
310 switch( i_code )
312 case 0x1b9:
313 block_Release( p_pkt );
314 break;
316 case 0x1ba:
317 if( !ps_pkt_parse_pack( p_pkt, &p_sys->i_scr, &i_mux_rate ) )
319 if( !p_sys->b_have_pack ) p_sys->b_have_pack = true;
320 /* done later on to work around bad vcd/svcd streams */
321 /* es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_scr ); */
322 if( i_mux_rate > 0 ) p_sys->i_mux_rate = i_mux_rate;
324 block_Release( p_pkt );
325 break;
327 case 0x1bb:
328 if( !ps_pkt_parse_system( p_pkt, &p_sys->psm, p_sys->tk ) )
330 int i;
331 for( i = 0; i < PS_TK_COUNT; i++ )
333 ps_track_t *tk = &p_sys->tk[i];
335 if( tk->b_seen && !tk->es && tk->fmt.i_cat != UNKNOWN_ES )
337 tk->es = es_out_Add( p_demux->out, &tk->fmt );
341 block_Release( p_pkt );
342 break;
344 case 0x1bc:
345 if( p_sys->psm.i_version == 0xFFFF )
346 msg_Dbg( p_demux, "contains a PSM");
348 ps_psm_fill( &p_sys->psm, p_pkt, p_sys->tk, p_demux->out );
349 block_Release( p_pkt );
350 break;
352 default:
353 if( (i_id = ps_pkt_id( p_pkt )) >= 0xc0 )
355 bool b_new = false;
356 ps_track_t *tk = &p_sys->tk[PS_ID_TO_TK(i_id)];
358 if( !tk->b_seen )
360 if( !ps_track_fill( tk, &p_sys->psm, i_id ) )
362 tk->es = es_out_Add( p_demux->out, &tk->fmt );
363 b_new = true;
365 else
367 msg_Dbg( p_demux, "es id=0x%x format unknown", i_id );
369 tk->b_seen = true;
372 /* The popular VCD/SVCD subtitling WinSubMux does not
373 * renumber the SCRs when merging subtitles into the PES */
374 if( tk->b_seen &&
375 ( tk->fmt.i_codec == VLC_FOURCC('o','g','t',' ') ||
376 tk->fmt.i_codec == VLC_FOURCC('c','v','d',' ') ) )
378 p_sys->i_scr = -1;
381 if( p_sys->i_scr > 0 )
382 es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_scr );
384 p_sys->i_scr = -1;
386 if( tk->b_seen && tk->es &&
388 #ifdef ZVBI_COMPILED /* FIXME!! */
389 tk->fmt.i_codec == VLC_FOURCC('t','e','l','x') ||
390 #endif
391 !ps_pkt_parse_pes( p_pkt, tk->i_skip ) ) )
393 if( !b_new && !p_sys->b_have_pack &&
394 (tk->fmt.i_cat == AUDIO_ES) &&
395 (p_pkt->i_pts > 0) )
397 /* A hack to sync the A/V on PES files. */
398 msg_Dbg( p_demux, "force SCR: %"PRId64, p_pkt->i_pts );
399 es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_pkt->i_pts );
402 if( (int64_t)p_pkt->i_pts > p_sys->i_current_pts )
404 p_sys->i_current_pts = (int64_t)p_pkt->i_pts;
407 es_out_Send( p_demux->out, tk->es, p_pkt );
409 else
411 block_Release( p_pkt );
414 else
416 block_Release( p_pkt );
418 break;
421 return 1;
424 /*****************************************************************************
425 * Control:
426 *****************************************************************************/
427 static int Control( demux_t *p_demux, int i_query, va_list args )
429 demux_sys_t *p_sys = p_demux->p_sys;
430 double f, *pf;
431 int64_t i64, *pi64;
433 switch( i_query )
435 case DEMUX_GET_POSITION:
436 pf = (double*) va_arg( args, double* );
437 i64 = stream_Size( p_demux->s );
438 if( i64 > 0 )
440 *pf = (double)stream_Tell( p_demux->s ) / (double)i64;
442 else
444 *pf = 0.0;
446 return VLC_SUCCESS;
448 case DEMUX_SET_POSITION:
449 f = (double) va_arg( args, double );
450 i64 = stream_Size( p_demux->s );
451 p_sys->i_current_pts = 0;
453 return stream_Seek( p_demux->s, (int64_t)(i64 * f) );
455 case DEMUX_GET_TIME:
456 pi64 = (int64_t*)va_arg( args, int64_t * );
457 if( p_sys->i_time_track >= 0 && p_sys->i_current_pts > 0 )
459 *pi64 = p_sys->i_current_pts - p_sys->tk[p_sys->i_time_track].i_first_pts;
460 return VLC_SUCCESS;
462 if( p_sys->i_mux_rate > 0 )
464 *pi64 = (int64_t)1000000 * ( stream_Tell( p_demux->s ) / 50 ) /
465 p_sys->i_mux_rate;
466 return VLC_SUCCESS;
468 *pi64 = 0;
469 return VLC_EGENERIC;
471 case DEMUX_GET_LENGTH:
472 pi64 = (int64_t*)va_arg( args, int64_t * );
473 if( p_sys->i_length > 0 )
475 *pi64 = p_sys->i_length;
476 return VLC_SUCCESS;
478 else if( p_sys->i_mux_rate > 0 )
480 *pi64 = (int64_t)1000000 * ( stream_Size( p_demux->s ) / 50 ) /
481 p_sys->i_mux_rate;
482 return VLC_SUCCESS;
484 *pi64 = 0;
485 return VLC_EGENERIC;
487 case DEMUX_SET_TIME:
488 i64 = (int64_t)va_arg( args, int64_t );
489 if( p_sys->i_time_track >= 0 && p_sys->i_current_pts > 0 )
491 int64_t i_now = p_sys->i_current_pts - p_sys->tk[p_sys->i_time_track].i_first_pts;
492 int64_t i_pos = stream_Tell( p_demux->s );
493 int64_t i_offset = i_pos / (i_now / 1000000) * ((i64 - i_now) / 1000000);
494 stream_Seek( p_demux->s, i_pos + i_offset);
496 return VLC_SUCCESS;
498 return VLC_EGENERIC;
500 case DEMUX_GET_FPS:
501 default:
502 return VLC_EGENERIC;
506 /*****************************************************************************
507 * Divers:
508 *****************************************************************************/
510 /* PSResynch: resynch on a system startcode
511 * It doesn't skip more than 512 bytes
512 * -1 -> error, 0 -> not synch, 1 -> ok
514 static int ps_pkt_resynch( stream_t *s, uint32_t *pi_code )
516 const uint8_t *p_peek;
517 int i_peek;
518 int i_skip;
520 if( stream_Peek( s, &p_peek, 4 ) < 4 )
522 return -1;
524 if( p_peek[0] == 0 && p_peek[1] == 0 && p_peek[2] == 1 &&
525 p_peek[3] >= 0xb9 )
527 *pi_code = 0x100 | p_peek[3];
528 return 1;
531 if( ( i_peek = stream_Peek( s, &p_peek, 512 ) ) < 4 )
533 return -1;
535 i_skip = 0;
537 for( ;; )
539 if( i_peek < 4 )
541 break;
543 if( p_peek[0] == 0 && p_peek[1] == 0 && p_peek[2] == 1 &&
544 p_peek[3] >= 0xb9 )
546 *pi_code = 0x100 | p_peek[3];
547 return stream_Read( s, NULL, i_skip ) == i_skip ? 1 : -1;
550 p_peek++;
551 i_peek--;
552 i_skip++;
554 return stream_Read( s, NULL, i_skip ) == i_skip ? 0 : -1;
557 static block_t *ps_pkt_read( stream_t *s, uint32_t i_code )
559 const uint8_t *p_peek;
560 int i_peek = stream_Peek( s, &p_peek, 14 );
561 int i_size;
562 VLC_UNUSED(i_code);
564 /* Smallest valid packet */
565 if( i_peek < 6 ) return NULL;
567 i_size = ps_pkt_size( p_peek, i_peek );
569 if( i_size < 0 || ( i_size <= 6 && p_peek[3] > 0xba ) )
571 /* Special case, search the next start code */
572 i_size = 6;
573 for( ;; )
575 i_peek = stream_Peek( s, &p_peek, i_size + 1024 );
576 if( i_peek <= i_size + 4 )
578 return NULL;
580 while( i_size <= i_peek - 4 )
582 if( p_peek[i_size] == 0x00 && p_peek[i_size+1] == 0x00 &&
583 p_peek[i_size+2] == 0x01 && p_peek[i_size+3] >= 0xb9 )
585 return stream_Block( s, i_size );
587 i_size++;
591 else
593 /* Normal case */
594 return stream_Block( s, i_size );
597 return NULL;