Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
f33e3e4b
Commit
f33e3e4b
authored
Oct 06, 2012
by
Rémi Denis-Courmont
Browse files
sout: remove unused sout_input_t.p_sout
parent
696e01c8
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/vlc_sout.h
View file @
f33e3e4b
...
...
@@ -144,8 +144,6 @@ enum sout_mux_query_e
struct
sout_input_t
{
sout_instance_t
*
p_sout
;
es_format_t
*
p_fmt
;
block_fifo_t
*
p_fifo
;
...
...
src/stream_output/stream_output.c
View file @
f33e3e4b
...
...
@@ -454,7 +454,6 @@ sout_input_t *sout_MuxAddStream( sout_mux_t *p_mux, es_format_t *p_fmt )
p_input
=
malloc
(
sizeof
(
sout_input_t
)
);
if
(
!
p_input
)
return
NULL
;
p_input
->
p_sout
=
p_mux
->
p_sout
;
p_input
->
p_fmt
=
p_fmt
;
p_input
->
p_fifo
=
block_FifoNew
();
p_input
->
p_sys
=
NULL
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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