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
3a7fdd03
Commit
3a7fdd03
authored
Jul 22, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stream: remove (no longer used) list support
parent
cb233fee
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
255 deletions
+20
-255
src/input/input.c
src/input/input.c
+1
-1
src/input/stream.c
src/input/stream.c
+18
-247
src/input/stream.h
src/input/stream.h
+1
-7
No files found.
src/input/input.c
View file @
3a7fdd03
...
@@ -2302,7 +2302,7 @@ static int InputSourceInit( input_thread_t *p_input,
...
@@ -2302,7 +2302,7 @@ static int InputSourceInit( input_thread_t *p_input,
psz_demux
=
p_access
->
psz_demux
;
psz_demux
=
p_access
->
psz_demux
;
/* Create the stream_t */
/* Create the stream_t */
stream_t
*
p_stream
=
stream_AccessNew
(
p_access
,
NULL
);
stream_t
*
p_stream
=
stream_AccessNew
(
p_access
);
if
(
p_stream
==
NULL
)
if
(
p_stream
==
NULL
)
{
{
msg_Warn
(
p_input
,
"cannot create a stream_t from access"
);
msg_Warn
(
p_input
,
"cannot create a stream_t from access"
);
...
...
src/input/stream.c
View file @
3a7fdd03
This diff is collapsed.
Click to expand it.
src/input/stream.h
View file @
3a7fdd03
...
@@ -43,14 +43,8 @@ void stream_CommonDelete( stream_t * );
...
@@ -43,14 +43,8 @@ void stream_CommonDelete( stream_t * );
/**
/**
* This function creates a stream_t from a provided access_t.
* This function creates a stream_t from a provided access_t.
*
* An optional NULL terminated list of file may be provided. The content
* of these extra files will be concatenated after to the main access.
*
* XXX ppsz_list is treated as const (I failed to avoid a warning when
* using const keywords for pointer of pointers)
*/
*/
stream_t
*
stream_AccessNew
(
access_t
*
p_access
,
char
**
ppsz_list
);
stream_t
*
stream_AccessNew
(
access_t
*
p_access
);
/**
/**
* This function creates a new stream_t filter.
* This function creates a new stream_t filter.
...
...
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