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
fa4f2b18
Commit
fa4f2b18
authored
Sep 01, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stream: remove no longer used stream_t.b_error
parent
b79f1e23
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
4 deletions
+0
-4
include/vlc_stream.h
include/vlc_stream.h
+0
-1
src/input/stream.c
src/input/stream.c
+0
-1
src/input/stream_demux.c
src/input/stream_demux.c
+0
-2
No files found.
include/vlc_stream.h
View file @
fa4f2b18
...
...
@@ -46,7 +46,6 @@ extern "C" {
struct
stream_t
{
VLC_COMMON_MEMBERS
bool
b_error
;
/* Module properties for stream filter */
module_t
*
p_module
;
...
...
src/input/stream.c
View file @
fa4f2b18
...
...
@@ -66,7 +66,6 @@ stream_t *stream_CommonNew(vlc_object_t *parent)
stream_t
*
s
=
&
priv
->
stream
;
s
->
b_error
=
false
;
s
->
p_module
=
NULL
;
s
->
psz_url
=
NULL
;
s
->
p_source
=
NULL
;
...
...
src/input/stream_demux.c
View file @
fa4f2b18
...
...
@@ -174,8 +174,6 @@ static ssize_t DStreamRead( stream_t *s, void *buf, size_t len )
if
(
!
atomic_load
(
&
sys
->
active
)
)
return
-
1
;
if
(
s
->
b_error
)
return
-
1
;
if
(
len
==
0
)
return
0
;
...
...
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