Commit d0350cb1 authored by Gildas Bazin's avatar Gildas Bazin

* src/input/es_out.c: remove deprecated hack.

parent 85e1d25b
...@@ -335,22 +335,8 @@ static es_out_id_t *EsOutAdd( es_out_t *out, es_format_t *fmt ) ...@@ -335,22 +335,8 @@ static es_out_id_t *EsOutAdd( es_out_t *out, es_format_t *fmt )
break; break;
case SPU_ES: case SPU_ES:
{
subtitle_data_t *p_sub = malloc( sizeof( subtitle_data_t ) );
memset( p_sub, 0, sizeof( subtitle_data_t ) );
if( fmt->i_extra > 0 )
{
p_sub->psz_header = malloc( fmt->i_extra + 1 );
memcpy( p_sub->psz_header, fmt->p_extra , fmt->i_extra );
/* just to be sure */
((uint8_t*)fmt->p_extra)[fmt->i_extra] = '\0';
}
/* FIXME beuuuuuurk */
es->p_es->p_demux_data = p_sub;
es->i_channel = p_sys->i_sub; es->i_channel = p_sys->i_sub;
break; break;
}
default: default:
es->i_channel = 0; es->i_channel = 0;
...@@ -709,7 +695,8 @@ static int EsOutControl( es_out_t *out, int i_query, va_list args ) ...@@ -709,7 +695,8 @@ static int EsOutControl( es_out_t *out, int i_query, va_list args )
case ES_OUT_RESET_PCR: case ES_OUT_RESET_PCR:
for( i = 0; i < p_sys->p_input->stream.i_pgrm_number; i++ ) for( i = 0; i < p_sys->p_input->stream.i_pgrm_number; i++ )
{ {
p_sys->p_input->stream.pp_programs[i]->i_synchro_state = SYNCHRO_REINIT; p_sys->p_input->stream.pp_programs[i]->i_synchro_state =
SYNCHRO_REINIT;
p_sys->p_input->stream.pp_programs[i]->last_pts = 0; p_sys->p_input->stream.pp_programs[i]->last_pts = 0;
} }
p_sys->b_pcr_set = VLC_TRUE; p_sys->b_pcr_set = VLC_TRUE;
......
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