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
6a6a6739
Commit
6a6a6739
authored
Apr 19, 2005
by
Steve Lhomme
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mkv.cpp: preliminary support for the JumpTT command
parent
960da7cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletion
+15
-1
modules/demux/mkv.cpp
modules/demux/mkv.cpp
+15
-1
No files found.
modules/demux/mkv.cpp
View file @
6a6a6739
...
...
@@ -408,6 +408,8 @@ protected:
uint16
p_GPRM
[
16
];
uint16
p_SPRM
[
24
];
static
const
uint16
CMD_JUMP_TT
=
0x3002
;
};
class
dvd_chapter_codec_c
:
public
chapter_codec_cmds_c
...
...
@@ -4088,5 +4090,17 @@ bool dvd_command_interpretor_c::Interpret( const binary * p_command, size_t i_si
if
(
i_size
!=
8
)
return
false
;
uint16
i_command
=
(
p_command
[
0
]
<<
8
)
+
p_command
[
1
];
switch
(
i_command
)
{
case
CMD_JUMP_TT
:
{
uint8
i_title
=
p_command
[
5
];
// TODO find in the ChapProcessPrivate matching this Title level
break
;
}
}
return
true
;
}
\ No newline at end of file
}
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