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
3b6780d3
Commit
3b6780d3
authored
Jun 05, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input: remove input_thread_t.b_eof
parent
35f50bdc
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
4 deletions
+0
-4
include/vlc_input.h
include/vlc_input.h
+0
-1
src/input/input.c
src/input/input.c
+0
-3
No files found.
include/vlc_input.h
View file @
3b6780d3
...
...
@@ -226,7 +226,6 @@ struct input_thread_t
VLC_COMMON_MEMBERS
bool
b_error
VLC_DEPRECATED
;
bool
b_eof
VLC_DEPRECATED
;
bool
b_preparsing
;
bool
b_dead
VLC_DEPRECATED
;
...
...
src/input/input.c
View file @
3b6780d3
...
...
@@ -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
;
/* Init Common fields */
p_input
->
b_eof
=
false
;
p_input
->
p
->
b_can_pace_control
=
true
;
p_input
->
p
->
i_start
=
0
;
p_input
->
p
->
i_time
=
0
;
...
...
@@ -2816,8 +2815,6 @@ static void input_ChangeState( input_thread_t *p_input, int i_state )
p_input
->
p
->
i_state
=
i_state
;
if
(
i_state
==
ERROR_S
)
p_input
->
b_error
=
true
;
else
if
(
i_state
==
END_S
)
p_input
->
b_eof
=
true
;
if
(
b_changed
)
{
...
...
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