Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
878a2399
Commit
878a2399
authored
Jan 31, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed now useless es_out_t::b_sout field.
parent
e1978d6d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
6 deletions
+0
-6
include/vlc_es_out.h
include/vlc_es_out.h
+0
-2
modules/access/bd/bd.c
modules/access/bd/bd.c
+0
-1
src/input/es_out.c
src/input/es_out.c
+0
-2
src/input/es_out_timeshift.c
src/input/es_out_timeshift.c
+0
-1
No files found.
include/vlc_es_out.h
View file @
878a2399
...
...
@@ -101,8 +101,6 @@ struct es_out_t
int
(
*
pf_control
)(
es_out_t
*
,
int
i_query
,
va_list
);
void
(
*
pf_destroy
)(
es_out_t
*
);
bool
b_sout
;
es_out_sys_t
*
p_sys
;
};
...
...
modules/access/bd/bd.c
View file @
878a2399
...
...
@@ -1343,7 +1343,6 @@ static es_out_t *EsOutNew( demux_t *p_demux )
p_out
->
pf_del
=
EsOutDel
;
p_out
->
pf_control
=
EsOutControl
;
p_out
->
pf_destroy
=
EsOutDestroy
;
p_out
->
b_sout
=
false
;
p_out
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
*
p_sys
)
);
if
(
!
p_sys
)
...
...
src/input/es_out.c
View file @
878a2399
...
...
@@ -237,8 +237,6 @@ es_out_t *input_EsOutNew( input_thread_t *p_input, int i_rate )
out
->
pf_control
=
EsOutControl
;
out
->
pf_destroy
=
EsOutDelete
;
out
->
p_sys
=
p_sys
;
out
->
b_sout
=
false
;
/* It has no meaning here, and p_input->p->p_sout is not yet valid */
vlc_mutex_init_recursive
(
&
p_sys
->
lock
);
p_sys
->
p_input
=
p_input
;
...
...
src/input/es_out_timeshift.c
View file @
878a2399
...
...
@@ -307,7 +307,6 @@ es_out_t *input_EsOutTimeshiftNew( input_thread_t *p_input, es_out_t *p_next_out
p_out
->
pf_control
=
Control
;
p_out
->
pf_destroy
=
Destroy
;
p_out
->
p_sys
=
p_sys
;
p_out
->
b_sout
=
p_input
->
p
->
p_sout
!=
NULL
;
/* */
p_sys
->
b_input_paused
=
false
;
...
...
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