Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
2d222d88
Commit
2d222d88
authored
Mar 28, 2005
by
Steve Lhomme
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mkv.cpp: compilation fixes for gcc
parent
62ec0de3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/demux/mkv.cpp
modules/demux/mkv.cpp
+3
-3
No files found.
modules/demux/mkv.cpp
View file @
2d222d88
...
...
@@ -570,7 +570,7 @@ public:
protected:
std
::
vector
<
matroska_segment_t
*>
linked_segments
;
std
::
vector
<
const
KaxSegmentUID
>
linked_uids
;
std
::
vector
<
KaxSegmentUID
>
linked_uids
;
size_t
i_current_segment
;
void
AppendUID
(
const
EbmlBinary
&
UID
);
...
...
@@ -820,7 +820,6 @@ static void Close( vlc_object_t *p_this )
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
{
demux_sys_t
*
p_sys
=
p_demux
->
p_sys
;
matroska_segment_t
*
p_segment
=
p_sys
->
p_current_segment
->
Segment
();
int64_t
*
pi64
;
double
*
pf
,
f
;
int
i_skp
;
...
...
@@ -3669,8 +3668,9 @@ void matroska_segment_t::Seek( mtime_t i_date, mtime_t i_time_offset )
void
virtual_segment_t
::
Seek
(
mtime_t
i_date
,
mtime_t
i_time_offset
)
{
size_t
i
;
// find the best matching segment
for
(
size_t
i
=
0
;
i
<
linked_segments
.
size
();
i
++
)
for
(
i
=
0
;
i
<
linked_segments
.
size
();
i
++
)
{
if
(
i_date
<
linked_segments
[
i
]
->
f_start_time
*
1000.0
)
break
;
...
...
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