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
210297fc
Commit
210297fc
authored
Aug 26, 2004
by
Eric Petit
Browse files
+ demux/ts.c: gcc < 3 fix
parent
9d3b03de
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/ts.c
View file @
210297fc
...
...
@@ -848,10 +848,10 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
for
(
i
=
2
;
i
<
8192
;
i
++
)
{
ts_pid_t
*
pid
=
&
p_sys
->
pid
[
i
];
int
i_prg
;
if
(
!
pid
->
b_valid
||
pid
->
psi
)
continue
;
int
i_prg
;
for
(
i_prg
=
0
;
i_prg
<
pid
->
p_owner
->
i_prg
;
i_prg
++
)
{
if
(
pid
->
p_owner
->
prg
[
i_prg
]
->
i_pid_pcr
==
i_pmt_pid
&&
pid
->
es
->
id
)
...
...
@@ -888,10 +888,10 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
for
(
i
=
2
;
i
<
8192
;
i
++
)
{
ts_pid_t
*
pid
=
&
p_sys
->
pid
[
i
];
int
i_prg
;
if
(
!
pid
->
b_valid
||
pid
->
psi
)
continue
;
int
i_prg
;
for
(
i_prg
=
0
;
i_prg
<
pid
->
p_owner
->
i_prg
;
i_prg
++
)
{
if
(
pid
->
p_owner
->
prg
[
i_prg
]
->
i_pid_pcr
==
i_pmt_pid
&&
pid
->
es
->
id
)
...
...
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