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
64ffbe93
Commit
64ffbe93
authored
Feb 23, 2012
by
David Fuhrmann
Committed by
Jean-Baptiste Kempf
Feb 23, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mkv: fix seek crash on osx
Close #6178
parent
0b54d2cb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
modules/demux/mkv/matroska_segment.cpp
modules/demux/mkv/matroska_segment.cpp
+2
-1
No files found.
modules/demux/mkv/matroska_segment.cpp
View file @
64ffbe93
...
...
@@ -774,7 +774,8 @@ void matroska_segment_c::Seek( mtime_t i_date, mtime_t i_time_offset, int64_t i_
/* now parse until key frame */
const
int
es
[
3
]
=
{
VIDEO_ES
,
AUDIO_ES
,
SPU_ES
};
for
(
int
i
=
0
,
i_cat
=
es
[
0
];
i
<
2
;
i_cat
=
es
[
++
i
]
)
i_cat
=
es
[
0
];
for
(
int
i
=
0
;
i
<
2
;
i_cat
=
es
[
++
i
]
)
{
for
(
i_track
=
0
;
i_track
<
tracks
.
size
();
i_track
++
)
{
...
...
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