X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fdemux%2Fps.c;h=bed63fea63ca9d20a766d6581bcb0ee1d658ce9c;hb=c426fd12c57569987c8f2b78c592bc288a96c8d2;hp=0ee0360919cccce0e677f7405757a7d955717c0a;hpb=449fd28aaf007c6411251dae9d0dbfdc65b135d1;p=vlc diff --git a/modules/demux/ps.c b/modules/demux/ps.c index 0ee0360919..bed63fea63 100644 --- a/modules/demux/ps.c +++ b/modules/demux/ps.c @@ -29,7 +29,8 @@ # include "config.h" #endif -#include +#include +#include #include #include "ps.h" @@ -52,10 +53,10 @@ static int Open ( vlc_object_t * ); static void Close ( vlc_object_t * ); vlc_module_begin(); - set_description( _("MPEG-PS demuxer") ); + set_description( N_("MPEG-PS demuxer") ); set_category( CAT_INPUT ); set_subcategory( SUBCAT_INPUT_DEMUX ); - set_capability( "demux2", 1 ); + set_capability( "demux", 1 ); set_callbacks( OpenForce, Close ); add_shortcut( "ps" ); @@ -63,8 +64,8 @@ vlc_module_begin(); TIME_LONGTEXT, true ); add_submodule(); - set_description( _("MPEG-PS demuxer") ); - set_capability( "demux2", 8 ); + set_description( N_("MPEG-PS demuxer") ); + set_capability( "demux", 8 ); set_callbacks( Open, Close ); vlc_module_end(); @@ -123,6 +124,7 @@ static int OpenCommon( vlc_object_t *p_this, bool b_force ) p_demux->pf_demux = Demux; p_demux->pf_control = Control; p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) ); + if( !p_sys ) return VLC_ENOMEM; /* Init p_sys */ p_sys->i_mux_rate = 0; @@ -241,14 +243,14 @@ static void FindLength( demux_t *p_demux ) /* Check beginning */ i = 0; i_current_pos = stream_Tell( p_demux->s ); - while( !p_demux->b_die && i < 40 && Demux2( p_demux, false ) > 0 ) i++; + while( vlc_object_alive (p_demux) && i < 40 && Demux2( p_demux, false ) > 0 ) i++; /* Check end */ i_size = stream_Size( p_demux->s ); i_end = __MAX( 0, __MIN( 200000, i_size ) ); stream_Seek( p_demux->s, i_size - i_end ); - while( !p_demux->b_die && Demux2( p_demux, true ) > 0 ); + while( vlc_object_alive (p_demux) && Demux2( p_demux, true ) > 0 ); if( i_current_pos >= 0 ) stream_Seek( p_demux->s, i_current_pos ); } @@ -263,7 +265,7 @@ static void FindLength( demux_t *p_demux ) { p_sys->i_length = i_length; p_sys->i_time_track = i; - msg_Dbg( p_demux, "we found a length of: "I64Fd, p_sys->i_length ); + msg_Dbg( p_demux, "we found a length of: %"PRId64, p_sys->i_length ); } } } @@ -381,12 +383,18 @@ static int Demux( demux_t *p_demux ) p_sys->i_scr = -1; if( tk->b_seen && tk->es && - !ps_pkt_parse_pes( p_pkt, tk->i_skip ) ) + ( +#ifdef ZVBI_COMPILED /* FIXME!! */ + tk->fmt.i_codec == VLC_FOURCC('t','e','l','x') || +#endif + !ps_pkt_parse_pes( p_pkt, tk->i_skip ) ) ) { - if( !b_new && !p_sys->b_have_pack && tk->fmt.i_cat == AUDIO_ES && p_pkt->i_pts > 0 ) + if( !b_new && !p_sys->b_have_pack && + (tk->fmt.i_cat == AUDIO_ES) && + (p_pkt->i_pts > 0) ) { /* A hack to sync the A/V on PES files. */ - msg_Dbg( p_demux, "force SCR: "I64Fd, p_pkt->i_pts ); + msg_Dbg( p_demux, "force SCR: %"PRId64, p_pkt->i_pts ); es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_pkt->i_pts ); } @@ -552,6 +560,7 @@ static block_t *ps_pkt_read( stream_t *s, uint32_t i_code ) const uint8_t *p_peek; int i_peek = stream_Peek( s, &p_peek, 14 ); int i_size = ps_pkt_size( p_peek, i_peek ); + VLC_UNUSED(i_code); if( i_size <= 6 && p_peek[3] > 0xba ) {