Commit 36e37a19 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Only input uses b_dead

parent a1440bea
......@@ -537,7 +537,6 @@ typedef struct vlc_object_internals_t vlc_object_internals_t;
/* Object properties */ \
volatile bool b_error; /**< set by the object */ \
volatile bool b_die; /**< set by the outside */ \
volatile bool b_dead; /**< set by the object */ \
bool b_force; /**< set by the outside (eg. module_Need()) */ \
\
/* Stuff related to the libvlc structure */ \
......
......@@ -439,8 +439,9 @@ struct input_thread_t
{
VLC_COMMON_MEMBERS;
bool b_eof;
bool b_eof;
bool b_preparsing;
bool b_dead;
int i_state;
bool b_can_pace_control;
......
......@@ -126,7 +126,6 @@ void *__vlc_custom_create( vlc_object_t *p_this, size_t i_size,
p_new->b_die = false;
p_new->b_error = false;
p_new->b_dead = false;
p_new->b_force = false;
p_new->psz_header = NULL;
......
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