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
8c47bc7e
Commit
8c47bc7e
authored
Aug 26, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input: remove input_source_t.p_access
parent
cea76269
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
5 deletions
+1
-5
src/input/input.c
src/input/input.c
+1
-4
src/input/input_internal.h
src/input/input_internal.h
+0
-1
No files found.
src/input/input.c
View file @
8c47bc7e
...
...
@@ -346,7 +346,6 @@ static input_thread_t *Create( vlc_object_t *p_parent, input_item_t *p_item,
p_input
->
p
->
p_item
=
p_item
;
/* Init Input fields */
p_input
->
p
->
input
.
p_access
=
NULL
;
p_input
->
p
->
input
.
p_stream
=
NULL
;
p_input
->
p
->
input
.
p_demux
=
NULL
;
p_input
->
p
->
input
.
b_title_demux
=
false
;
...
...
@@ -1331,7 +1330,6 @@ error:
/* Mark them deleted */
p_input
->
p
->
input
.
p_demux
=
NULL
;
p_input
->
p
->
input
.
p_stream
=
NULL
;
p_input
->
p
->
input
.
p_access
=
NULL
;
p_input
->
p
->
p_es_out
=
NULL
;
p_input
->
p
->
p_sout
=
NULL
;
...
...
@@ -1813,7 +1811,7 @@ static bool Control( input_thread_t *p_input,
!
p_input
->
p
->
b_can_pace_control
&&
p_input
->
p
->
b_can_rate_control
)
{
int
i_ret
;
if
(
p_input
->
p
->
input
.
p_
access
)
if
(
p_input
->
p
->
input
.
p_
stream
!=
NULL
)
{
i_ret
=
VLC_EGENERIC
;
}
...
...
@@ -2474,7 +2472,6 @@ static int InputSourceInit( input_thread_t *p_input,
in
->
b_title_demux
=
true
;
}
}
in
->
p_access
=
p_access
;
/* <- TODO: remove this nasty pointer */
}
free
(
psz_var_demux
);
...
...
src/input/input_internal.h
View file @
8c47bc7e
...
...
@@ -40,7 +40,6 @@
typedef
struct
{
/* Access/Stream/Demux plugins */
access_t
*
p_access
VLC_DEPRECATED
;
stream_t
*
p_stream
;
demux_t
*
p_demux
;
...
...
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