Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
15
Merge Requests
15
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
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
Steve Lhomme
VLC
Commits
35fc77d1
Commit
35fc77d1
authored
Jul 31, 2017
by
Steve Lhomme
Committed by
Jean-Baptiste Kempf
Jul 31, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mkv: use a const iterator when updating the PCR
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
ff3bebc1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/demux/mkv/mkv.cpp
modules/demux/mkv/mkv.cpp
+1
-1
No files found.
modules/demux/mkv/mkv.cpp
View file @
35fc77d1
...
...
@@ -752,7 +752,7 @@ static int Demux( demux_t *p_demux)
typedef
matroska_segment_c
::
tracks_map_t
tracks_map_t
;
for
(
tracks_map_t
::
iterator
it
=
p_segment
->
tracks
.
begin
();
it
!=
p_segment
->
tracks
.
end
();
++
it
)
for
(
tracks_map_t
::
const_
iterator
it
=
p_segment
->
tracks
.
begin
();
it
!=
p_segment
->
tracks
.
end
();
++
it
)
{
mkv_track_t
&
track
=
*
it
->
second
;
...
...
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