Commit d33c7cb0 authored by Rafaël Carré's avatar Rafaël Carré

Add comment/cosmetics

parent 63750162
...@@ -904,8 +904,8 @@ static int Init( input_thread_t * p_input ) ...@@ -904,8 +904,8 @@ static int Init( input_thread_t * p_input )
var_Change( p_input, "length", VLC_VAR_SETVALUE, &val, NULL ); var_Change( p_input, "length", VLC_VAR_SETVALUE, &val, NULL );
UpdateItemLength( p_input, val.i_time ); UpdateItemLength( p_input, val.i_time );
} }
else if( p_input->p->input.p_item->i_duration > 0) else if( p_input->p->input.p_item->i_duration > 0 )
{ { /* fallback: gets length from metadata */
val.i_time = p_input->p->input.p_item->i_duration; val.i_time = p_input->p->input.p_item->i_duration;
var_Change( p_input, "length", VLC_VAR_SETVALUE, &val, NULL ); var_Change( p_input, "length", VLC_VAR_SETVALUE, &val, NULL );
UpdateItemLength( p_input, val.i_time ); UpdateItemLength( p_input, val.i_time );
......
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