Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
3cebf08d
Commit
3cebf08d
authored
Jun 11, 2014
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
demux: mp4: ignore SPU when setting PCR
otherwise breaks PCR update on seek
parent
afc9003f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/demux/mp4/mp4.c
modules/demux/mp4/mp4.c
+3
-1
No files found.
modules/demux/mp4/mp4.c
View file @
3cebf08d
...
...
@@ -930,7 +930,9 @@ end:
for
(
i_track
=
0
;
i_track
<
p_sys
->
i_tracks
;
i_track
++
)
{
mp4_track_t
*
tk
=
&
p_sys
->
track
[
i_track
];
if
(
!
tk
->
b_ok
||
!
tk
->
b_selected
)
continue
;
if
(
!
tk
->
b_ok
||
!
tk
->
b_selected
||
(
tk
->
fmt
.
i_cat
!=
AUDIO_ES
&&
tk
->
fmt
.
i_cat
!=
VIDEO_ES
)
)
continue
;
p_sys
->
i_pcr
=
__MIN
(
MP4_TrackGetDTS
(
p_demux
,
tk
),
p_sys
->
i_pcr
);
p_sys
->
i_time
=
p_sys
->
i_pcr
*
p_sys
->
i_timescale
/
CLOCK_FREQ
;
}
...
...
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