Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
36e37a19
Commit
36e37a19
authored
Sep 14, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Only input uses b_dead
parent
a1440bea
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
3 deletions
+2
-3
include/vlc_common.h
include/vlc_common.h
+0
-1
include/vlc_input.h
include/vlc_input.h
+2
-1
src/misc/objects.c
src/misc/objects.c
+0
-1
No files found.
include/vlc_common.h
View file @
36e37a19
...
...
@@ -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 */
\
...
...
include/vlc_input.h
View file @
36e37a19
...
...
@@ -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
;
...
...
src/misc/objects.c
View file @
36e37a19
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment