Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
e964b1d6
Commit
e964b1d6
authored
Mar 16, 2015
by
Steve Lhomme
Committed by
Jean-Baptiste Kempf
Mar 16, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MKV: no need to shift the dts/pts twice in some cases anymore
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
9f8bf1c0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
modules/demux/mkv/mkv.cpp
modules/demux/mkv/mkv.cpp
+0
-6
No files found.
modules/demux/mkv/mkv.cpp
View file @
e964b1d6
...
@@ -692,12 +692,6 @@ msg_Dbg( p_demux, "block (track=%d) i_dts: %"PRId64" / i_pts: %"PRId64, tk->i_nu
...
@@ -692,12 +692,6 @@ msg_Dbg( p_demux, "block (track=%d) i_dts: %"PRId64" / i_pts: %"PRId64, tk->i_nu
(
double
)
p_segment
->
i_timescale
/
(
1000.0
*
i_number_frames
);
(
double
)
p_segment
->
i_timescale
/
(
1000.0
*
i_number_frames
);
}
}
/* FIXME remove when VLC_TS_INVALID work is done */
if
(
i_frame
==
0
||
p_block
->
i_dts
>
VLC_TS_INVALID
)
p_block
->
i_dts
+=
VLC_TS_0
;
if
(
!
tk
->
b_dts_only
&&
(
i_frame
==
0
||
p_block
->
i_pts
>
VLC_TS_INVALID
)
)
p_block
->
i_pts
+=
VLC_TS_0
;
es_out_Send
(
p_demux
->
out
,
tk
->
p_es
,
p_block
);
es_out_Send
(
p_demux
->
out
,
tk
->
p_es
,
p_block
);
/* use time stamp only for first block */
/* use time stamp only for first 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