Commit 3b6780d3 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

input: remove input_thread_t.b_eof

parent 35f50bdc
...@@ -226,7 +226,6 @@ struct input_thread_t ...@@ -226,7 +226,6 @@ struct input_thread_t
VLC_COMMON_MEMBERS VLC_COMMON_MEMBERS
bool b_error VLC_DEPRECATED; bool b_error VLC_DEPRECATED;
bool b_eof VLC_DEPRECATED;
bool b_preparsing; bool b_preparsing;
bool b_dead VLC_DEPRECATED; bool b_dead VLC_DEPRECATED;
......
...@@ -313,7 +313,6 @@ static input_thread_t *Create( vlc_object_t *p_parent, input_item_t *p_item, ...@@ -313,7 +313,6 @@ static input_thread_t *Create( vlc_object_t *p_parent, input_item_t *p_item,
p_input->psz_header = psz_header ? strdup( psz_header ) : NULL; p_input->psz_header = psz_header ? strdup( psz_header ) : NULL;
/* Init Common fields */ /* Init Common fields */
p_input->b_eof = false;
p_input->p->b_can_pace_control = true; p_input->p->b_can_pace_control = true;
p_input->p->i_start = 0; p_input->p->i_start = 0;
p_input->p->i_time = 0; p_input->p->i_time = 0;
...@@ -2816,8 +2815,6 @@ static void input_ChangeState( input_thread_t *p_input, int i_state ) ...@@ -2816,8 +2815,6 @@ static void input_ChangeState( input_thread_t *p_input, int i_state )
p_input->p->i_state = i_state; p_input->p->i_state = i_state;
if( i_state == ERROR_S ) if( i_state == ERROR_S )
p_input->b_error = true; p_input->b_error = true;
else if( i_state == END_S )
p_input->b_eof = true;
if( b_changed ) if( b_changed )
{ {
......
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