Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
12dcce3f
Commit
12dcce3f
authored
May 03, 2007
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/input/stream.c: fix input-list code.
parent
8d3912c2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
src/input/stream.c
src/input/stream.c
+5
-5
No files found.
src/input/stream.c
View file @
12dcce3f
...
...
@@ -223,7 +223,7 @@ stream_t *__stream_UrlNew( vlc_object_t *p_parent, const char *psz_url )
stream_t
*
stream_AccessNew
(
access_t
*
p_access
,
vlc_bool_t
b_quick
)
{
stream_t
*
s
=
vlc_stream_create
(
p_access
);
stream_t
*
s
=
vlc_stream_create
(
VLC_OBJECT
(
p_access
)
);
stream_sys_t
*
p_sys
;
char
*
psz_list
;
...
...
@@ -287,7 +287,7 @@ stream_t *stream_AccessNew( access_t *p_access, vlc_bool_t b_quick )
if
(
psz_name
)
{
access_t
*
p_tmp
=
access2_New
(
p_access
,
p_access
->
psz_access
,
0
,
psz_name
,
0
);
""
,
psz_name
,
0
);
if
(
!
p_tmp
)
{
...
...
@@ -1663,7 +1663,7 @@ static int AReadStream( stream_t *s, void *p_read, int i_read )
msg_Dbg
(
s
,
"opening input `%s'"
,
psz_name
);
p_list_access
=
access2_New
(
s
,
p_access
->
psz_access
,
0
,
psz_name
,
0
);
p_list_access
=
access2_New
(
s
,
p_access
->
psz_access
,
""
,
psz_name
,
0
);
if
(
!
p_list_access
)
return
0
;
...
...
@@ -1735,7 +1735,7 @@ static block_t *AReadBlock( stream_t *s, vlc_bool_t *pb_eof )
msg_Dbg
(
s
,
"opening input `%s'"
,
psz_name
);
p_list_access
=
access2_New
(
s
,
p_access
->
psz_access
,
0
,
psz_name
,
0
);
p_list_access
=
access2_New
(
s
,
p_access
->
psz_access
,
""
,
psz_name
,
0
);
if
(
!
p_list_access
)
return
0
;
...
...
@@ -1792,7 +1792,7 @@ static int ASeek( stream_t *s, int64_t i_pos )
if
(
i
!=
p_sys
->
i_list_index
&&
i
!=
0
)
{
p_list_access
=
access2_New
(
s
,
p_access
->
psz_access
,
0
,
psz_name
,
0
);
access2_New
(
s
,
p_access
->
psz_access
,
""
,
psz_name
,
0
);
}
else
if
(
i
!=
p_sys
->
i_list_index
)
{
...
...
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