Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
ac52d273
Commit
ac52d273
authored
Aug 30, 2006
by
hartman
Browse files
* forwardport [15373] which was left accidently hanging in the 0.8.5 branch
parent
fb1fb42f
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/ts.c
View file @
ac52d273
...
...
@@ -973,7 +973,7 @@ static int DemuxFile( demux_t *p_demux )
i_diff
=
(
i_cc
-
p_pid
->
i_cc
)
&
0x0f
;
if
(
b_payload
&&
i_diff
==
1
)
{
p_pid
->
i_cc
++
;
p_pid
->
i_cc
=
(
p_pid
->
i_cc
+
1
)
&
0xf
;
}
else
{
...
...
@@ -1782,7 +1782,7 @@ static vlc_bool_t GatherPES( demux_t *p_demux, ts_pid_t *pid, block_t *p_bk )
i_diff
=
(
i_cc
-
pid
->
i_cc
)
&
0x0f
;
if
(
b_payload
&&
i_diff
==
1
)
{
pid
->
i_cc
++
;
pid
->
i_cc
=
(
pid
->
i_cc
+
1
)
&
0xf
;
}
else
{
...
...
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