1 /*****************************************************************************
2 * ps.c: Program Stream demux module for VLC.
3 *****************************************************************************
4 * Copyright (C) 2004 the VideoLAN team
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 /*****************************************************************************
26 *****************************************************************************/
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_demux.h>
39 * - re-add pre-scanning.
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 /*****************************************************************************
50 *****************************************************************************/
51 static int OpenForce( vlc_object_t
* );
52 static int Open ( vlc_object_t
* );
53 static void Close ( vlc_object_t
* );
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
);
63 add_bool( "ps-trust-timestamps", true, NULL
, TIME_TEXT
,
64 TIME_LONGTEXT
, true );
67 set_description( N_("MPEG-PS demuxer") );
68 set_capability( "demux", 8 );
69 set_callbacks( Open
, Close
);
72 /*****************************************************************************
74 *****************************************************************************/
79 ps_track_t tk
[PS_TK_COUNT
];
85 int64_t i_current_pts
;
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 /*****************************************************************************
100 *****************************************************************************/
101 static int OpenCommon( vlc_object_t
*p_this
, bool b_force
)
103 demux_t
*p_demux
= (demux_t
*)p_this
;
106 const uint8_t *p_peek
;
108 if( stream_Peek( p_demux
->s
, &p_peek
, 4 ) < 4 )
110 msg_Err( p_demux
, "cannot peek" );
114 if( memcmp( p_peek
, "\x00\x00\x01", 3 ) || ( p_peek
[3] < 0xb9 ) )
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
;
130 p_sys
->i_mux_rate
= 0;
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 */
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 /*****************************************************************************
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
;
169 for( i
= 0; i
< PS_TK_COUNT
; i
++ )
171 ps_track_t
*tk
= &p_sys
->tk
[i
];
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
);
184 static int Demux2( demux_t
*p_demux
, bool b_end
)
186 demux_sys_t
*p_sys
= p_demux
->p_sys
;
191 i_ret
= ps_pkt_resynch( p_demux
->s
, &i_code
);
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;
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
)
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
);
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;
237 if( !var_CreateGetInteger( p_demux
, "ps-trust-timestamps" ) )
240 if( p_sys
->i_length
== -1 ) /* First time */
243 /* Check beginning */
245 i_current_pos
= stream_Tell( p_demux
->s
);
246 while( vlc_object_alive (p_demux
) && i
< 40 && Demux2( p_demux
, false ) > 0 ) i
++;
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
);
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 /*****************************************************************************
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
;
285 i_ret
= ps_pkt_resynch( p_demux
->s
, &i_code
);
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;
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
)
313 block_Release( p_pkt
);
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
);
328 if( !ps_pkt_parse_system( p_pkt
, &p_sys
->psm
, p_sys
->tk
) )
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
);
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
);
353 if( (i_id
= ps_pkt_id( p_pkt
)) >= 0xc0 )
356 ps_track_t
*tk
= &p_sys
->tk
[PS_ID_TO_TK(i_id
)];
360 if( !ps_track_fill( tk
, &p_sys
->psm
, i_id
) )
362 tk
->es
= es_out_Add( p_demux
->out
, &tk
->fmt
);
367 msg_Dbg( p_demux
, "es id=0x%x format unknown", i_id
);
372 /* The popular VCD/SVCD subtitling WinSubMux does not
373 * renumber the SCRs when merging subtitles into the PES */
375 ( tk
->fmt
.i_codec
== VLC_FOURCC('o','g','t',' ') ||
376 tk
->fmt
.i_codec
== VLC_FOURCC('c','v','d',' ') ) )
381 if( p_sys
->i_scr
> 0 )
382 es_out_Control( p_demux
->out
, ES_OUT_SET_PCR
, p_sys
->i_scr
);
386 if( tk
->b_seen
&& tk
->es
&&
388 #ifdef ZVBI_COMPILED /* FIXME!! */
389 tk
->fmt
.i_codec
== VLC_FOURCC('t','e','l','x') ||
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
) &&
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
);
411 block_Release( p_pkt
);
416 block_Release( p_pkt
);
424 /*****************************************************************************
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
;
435 case DEMUX_GET_POSITION
:
436 pf
= (double*) va_arg( args
, double* );
437 i64
= stream_Size( p_demux
->s
);
440 *pf
= (double)stream_Tell( p_demux
->s
) / (double)i64
;
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
) );
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
;
462 if( p_sys
->i_mux_rate
> 0 )
464 *pi64
= (int64_t)1000000 * ( stream_Tell( p_demux
->s
) / 50 ) /
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
;
478 else if( p_sys
->i_mux_rate
> 0 )
480 *pi64
= (int64_t)1000000 * ( stream_Size( p_demux
->s
) / 50 ) /
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
);
506 /*****************************************************************************
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
;
520 if( stream_Peek( s
, &p_peek
, 4 ) < 4 )
524 if( p_peek
[0] == 0 && p_peek
[1] == 0 && p_peek
[2] == 1 &&
527 *pi_code
= 0x100 | p_peek
[3];
531 if( ( i_peek
= stream_Peek( s
, &p_peek
, 512 ) ) < 4 )
543 if( p_peek
[0] == 0 && p_peek
[1] == 0 && p_peek
[2] == 1 &&
546 *pi_code
= 0x100 | p_peek
[3];
547 return stream_Read( s
, NULL
, i_skip
) == i_skip
? 1 : -1;
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 );
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 */
575 i_peek
= stream_Peek( s
, &p_peek
, i_size
+ 1024 );
576 if( i_peek
<= i_size
+ 4 )
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
);
594 return stream_Block( s
, i_size
);