Commit 7fbf82b3 authored by Jean-Philippe Andre's avatar Jean-Philippe Andre

Fix compilation

Missing ;
parent 6f02f88b
......@@ -208,12 +208,12 @@ static void MacroDo( httpd_file_sys_t *p_args,
}
case MVLC_STOP:
playlist_Control( p_sys->p_playlist, PLAYLIST_STOP,
true )
true );
msg_Dbg( p_intf, "requested playlist stop" );
break;
case MVLC_PAUSE:
playlist_Control( p_sys->p_playlist, PLAYLIST_PAUSE,
true )
true );
msg_Dbg( p_intf, "requested playlist pause" );
break;
case MVLC_NEXT:
......
......@@ -789,7 +789,7 @@ bool matroska_segment_c::Select( mtime_t i_start_time )
stream_t *p_mp4_stream = stream_MemoryNew( VLC_OBJECT(&sys.demuxer),
tracks[i_track]->p_extra_data,
tracks[i_track]->i_extra_data,
true )
true );
MP4_ReadBoxCommon( p_mp4_stream, p_box );
MP4_ReadBox_sample_vide( p_mp4_stream, p_box );
tracks[i_track]->fmt.i_codec = p_box->i_type;
......
......@@ -956,7 +956,7 @@ static int ParseSubViewer( demux_t *p_demux, subtitle_t *p_subtitle,
return ParseSubRipSubViewer( p_demux, p_subtitle,
"%d:%d:%d.%d,%d:%d:%d.%d",
true )
true );
}
/* ParseSSA
......
......@@ -1337,10 +1337,10 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
{
stream_Control( p_demux->s, STREAM_CONTROL_ACCESS,
ACCESS_SET_PRIVATE_ID_STATE, i_pmt_pid,
true )
true );
stream_Control( p_demux->s, STREAM_CONTROL_ACCESS,
ACCESS_SET_PRIVATE_ID_STATE, p_prg->i_pid_pcr,
true )
true );
for( i = 2; i < 8192; i++ )
{
......@@ -3091,7 +3091,7 @@ static void PMTCallBack( demux_t *p_demux, dvbpsi_pmt_t *p_pmt )
/* Set demux filter */
stream_Control( p_demux->s, STREAM_CONTROL_ACCESS,
ACCESS_SET_PRIVATE_ID_STATE, prg->i_pid_pcr,
true )
true );
}
else if ( p_sys->b_dvb_control )
{
......@@ -3910,7 +3910,7 @@ static void PMTCallBack( demux_t *p_demux, dvbpsi_pmt_t *p_pmt )
/* Set demux filter */
stream_Control( p_demux->s, STREAM_CONTROL_ACCESS,
ACCESS_SET_PRIVATE_ID_STATE, p_es->i_pid,
true )
true );
}
}
......
......@@ -2241,7 +2241,7 @@ static int RenderHtml( filter_t *p_filter, subpicture_region_t *p_region_out,
p_sub = stream_MemoryNew( VLC_OBJECT(p_filter),
(uint8_t *) p_region_in->psz_html,
strlen( p_region_in->psz_html ),
true )
true );
if( p_sub )
{
p_xml = xml_Create( p_filter );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment