Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
8e2e5e13
Commit
8e2e5e13
authored
Dec 13, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed useless b_quick parameter in stream_AccessNew.
parent
ed7ac351
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
9 deletions
+4
-9
src/input/input.c
src/input/input.c
+1
-1
src/input/stream.c
src/input/stream.c
+2
-7
src/input/stream.h
src/input/stream.h
+1
-1
No files found.
src/input/input.c
View file @
8e2e5e13
...
...
@@ -2497,7 +2497,7 @@ static int InputSourceInit( input_thread_t *p_input,
}
/* Create the stream_t */
in
->
p_stream
=
stream_AccessNew
(
in
->
p_access
,
p_input
->
b_preparsing
);
in
->
p_stream
=
stream_AccessNew
(
in
->
p_access
);
/* Restore old value */
if
(
!
psz_input_list
)
...
...
src/input/stream.c
View file @
8e2e5e13
...
...
@@ -182,9 +182,6 @@ struct stream_sys_t
access_entry_t
**
list
;
int
i_list_index
;
access_t
*
p_list_access
;
/* Preparse mode ? */
bool
b_quick
;
};
/* Method 1: */
...
...
@@ -269,7 +266,7 @@ stream_t *__stream_UrlNew( vlc_object_t *p_parent, const char *psz_url )
return
NULL
;
}
if
(
!
(
p_res
=
stream_AccessNew
(
p_access
,
true
)
)
)
if
(
!
(
p_res
=
stream_AccessNew
(
p_access
)
)
)
{
access_Delete
(
p_access
);
return
NULL
;
...
...
@@ -279,7 +276,7 @@ stream_t *__stream_UrlNew( vlc_object_t *p_parent, const char *psz_url )
return
p_res
;
}
stream_t
*
stream_AccessNew
(
access_t
*
p_access
,
bool
b_quick
)
stream_t
*
stream_AccessNew
(
access_t
*
p_access
)
{
stream_t
*
s
=
stream_CommonNew
(
VLC_OBJECT
(
p_access
)
);
stream_sys_t
*
p_sys
;
...
...
@@ -325,8 +322,6 @@ stream_t *stream_AccessNew( access_t *p_access, bool b_quick )
p_sys
->
i_list_index
=
0
;
p_sys
->
p_list_access
=
0
;
p_sys
->
b_quick
=
b_quick
;
/* Get the additional list of inputs if any (for concatenation) */
if
(
(
psz_list
=
var_CreateGetString
(
s
,
"input-list"
))
&&
*
psz_list
)
{
...
...
src/input/stream.h
View file @
8e2e5e13
...
...
@@ -45,7 +45,7 @@ stream_t *stream_CommonNew( vlc_object_t * );
void
stream_CommonDelete
(
stream_t
*
);
/* */
stream_t
*
stream_AccessNew
(
access_t
*
p_access
,
bool
);
stream_t
*
stream_AccessNew
(
access_t
*
p_access
);
/* */
stream_t
*
stream_FilterNew
(
stream_t
*
p_source
,
...
...
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