Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
29f9b9bf
Commit
29f9b9bf
authored
Feb 25, 2005
by
Laurent Aimar
Browse files
* ts: if no dts but there is a pts then dts == pts.
parent
fa81e26c
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/ts.c
View file @
29f9b9bf
...
...
@@ -1256,6 +1256,10 @@ static void ParsePES( demux_t *p_demux, ts_pid_t *pid )
}
}
/* ISO/IEC 13818-1 2.7.5: if no pts and no dts, then dts == pts */
if
(
i_pts
>=
0
&&
i_dts
<
0
)
i_dts
=
i_pts
;
if
(
p_pes
)
{
block_t
*
p_block
;
...
...
Write
Preview
Supports
Markdown
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