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
b93aa7e7
Commit
b93aa7e7
authored
Jan 05, 2004
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* API change in mkv. Everyone should update to the latest libraries.
parent
31fc1d05
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
modules/demux/mkv.cpp
modules/demux/mkv.cpp
+5
-5
No files found.
modules/demux/mkv.cpp
View file @
b93aa7e7
...
...
@@ -2,7 +2,7 @@
* mkv.cpp : matroska demuxer
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: mkv.cpp,v 1.5
1 2004/01/05 13:07:02 zorglub
Exp $
* $Id: mkv.cpp,v 1.5
2 2004/01/05 18:15:12 hartman
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -633,7 +633,7 @@ static int Open( vlc_object_t * p_this )
else
if
(
EbmlId
(
*
el3
)
==
KaxCodecPrivate
::
ClassInfos
.
GlobalId
)
{
KaxCodecPrivate
&
cpriv
=
*
(
KaxCodecPrivate
*
)
el3
;
cpriv
.
ReadData
(
p_sys
->
es
->
I_O
()
);
cpriv
.
ReadData
(
p_sys
->
es
->
I_O
()
,
SCOPE_ALL_DATA
);
tk
.
i_extra_data
=
cpriv
.
GetSize
();
if
(
tk
.
i_extra_data
>
0
)
...
...
@@ -856,7 +856,7 @@ static int Open( vlc_object_t * p_this )
{
KaxSeekID
&
sid
=
*
(
KaxSeekID
*
)
el
;
sid
.
ReadData
(
p_sys
->
es
->
I_O
()
);
sid
.
ReadData
(
p_sys
->
es
->
I_O
()
,
SCOPE_ALL_DATA
);
id
=
EbmlId
(
sid
.
GetBuffer
(),
sid
.
GetSize
()
);
}
...
...
@@ -864,7 +864,7 @@ static int Open( vlc_object_t * p_this )
{
KaxSeekPosition
&
spos
=
*
(
KaxSeekPosition
*
)
el
;
spos
.
ReadData
(
p_sys
->
es
->
I_O
()
);
spos
.
ReadData
(
p_sys
->
es
->
I_O
()
,
SCOPE_ALL_DATA
);
i_pos
=
uint64
(
spos
);
}
...
...
@@ -1323,7 +1323,7 @@ static int BlockGet( input_thread_t *p_input, KaxBlock **pp_block, int64_t *pi_r
{
KaxClusterTimecode
&
ctc
=
*
(
KaxClusterTimecode
*
)
el
;
ctc
.
ReadData
(
p_sys
->
es
->
I_O
()
);
ctc
.
ReadData
(
p_sys
->
es
->
I_O
()
,
SCOPE_ALL_DATA
);
p_sys
->
cluster
->
InitTimecode
(
uint64
(
ctc
),
p_sys
->
i_timescale
);
}
else
if
(
EbmlId
(
*
el
)
==
KaxBlockGroup
::
ClassInfos
.
GlobalId
)
...
...
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