Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
29f9b9bf
Commit
29f9b9bf
authored
Feb 25, 2005
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ts: if no dts but there is a pts then dts == pts.
parent
fa81e26c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
modules/demux/ts.c
modules/demux/ts.c
+4
-0
No files found.
modules/demux/ts.c
View file @
29f9b9bf
...
@@ -1256,6 +1256,10 @@ static void ParsePES( demux_t *p_demux, ts_pid_t *pid )
...
@@ -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
)
if
(
p_pes
)
{
{
block_t
*
p_block
;
block_t
*
p_block
;
...
...
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