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
13b4e116
Commit
13b4e116
authored
Feb 09, 2012
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
TS mux: remove write only variables
parent
a6c0d629
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
8 deletions
+0
-8
modules/mux/mpeg/ts.c
modules/mux/mpeg/ts.c
+0
-8
No files found.
modules/mux/mpeg/ts.c
View file @
13b4e116
...
...
@@ -361,9 +361,6 @@ struct sout_mux_sys_t
vlc_mutex_t
csa_lock
;
int
i_audio_bound
;
int
i_video_bound
;
bool
b_es_id_pid
;
bool
b_sdt
;
int
i_pid_video
;
...
...
@@ -552,9 +549,6 @@ static int Open( vlc_object_t *p_this )
=
p_sys
->
sdt_descriptors
[
i
].
psz_provider
=
NULL
;
memset
(
p_sys
->
sdt_descriptors
,
0
,
sizeof
(
sdt_desc_t
)
);
p_sys
->
i_audio_bound
=
0
;
p_sys
->
i_video_bound
=
0
;
p_sys
->
b_es_id_pid
=
var_GetBool
(
p_mux
,
SOUT_CFG_PREFIX
"es-id-pid"
);
/*
...
...
@@ -975,7 +969,6 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
free
(
p_stream
);
return
VLC_EGENERIC
;
}
p_sys
->
i_video_bound
++
;
break
;
case
AUDIO_ES
:
...
...
@@ -1015,7 +1008,6 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
free
(
p_stream
);
return
VLC_EGENERIC
;
}
p_sys
->
i_audio_bound
++
;
break
;
case
SPU_ES
:
...
...
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