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
988d3773
Commit
988d3773
authored
Feb 27, 2015
by
Steve Lhomme
Committed by
Jean-Baptiste Kempf
Feb 28, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MKV: avoid recursive parsing of the same Seek head
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
5d0a4cf2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
modules/demux/mkv/matroska_segment.cpp
modules/demux/mkv/matroska_segment.cpp
+5
-2
No files found.
modules/demux/mkv/matroska_segment.cpp
View file @
988d3773
...
@@ -775,11 +775,14 @@ bool matroska_segment_c::LoadSeekHeadItem( const EbmlCallbacks & ClassInfos, int
...
@@ -775,11 +775,14 @@ bool matroska_segment_c::LoadSeekHeadItem( const EbmlCallbacks & ClassInfos, int
/* Multiple allowed */
/* Multiple allowed */
msg_Dbg
(
&
sys
.
demuxer
,
"| + Seek head"
);
msg_Dbg
(
&
sys
.
demuxer
,
"| + Seek head"
);
if
(
i_seekhead_count
<
10
)
if
(
i_seekhead_count
<
10
)
{
if
(
i_seekhead_position
!=
i_element_position
)
{
{
i_seekhead_position
=
i_element_position
;
i_seekhead_position
=
i_element_position
;
ParseSeekHead
(
static_cast
<
KaxSeekHead
*>
(
el
)
);
ParseSeekHead
(
static_cast
<
KaxSeekHead
*>
(
el
)
);
}
}
}
}
}
else
if
(
MKV_IS_ID
(
el
,
KaxInfo
)
)
// FIXME
else
if
(
MKV_IS_ID
(
el
,
KaxInfo
)
)
// FIXME
{
{
/* Multiple allowed, mandatory */
/* Multiple allowed, mandatory */
...
...
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