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
add114aa
Commit
add114aa
authored
Jan 24, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support clpi/mpls avchd version (untested).
parent
982f3e42
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
modules/access/bd/clpi.c
modules/access/bd/clpi.c
+2
-1
modules/access/bd/mpls.c
modules/access/bd/mpls.c
+2
-1
No files found.
modules/access/bd/clpi.c
View file @
add114aa
...
...
@@ -124,7 +124,8 @@ int bd_clpi_Parse( bd_clpi_t *p_clpi, bs_t *s, int i_id )
/* */
if
(
bs_read
(
s
,
32
)
!=
0x48444D56
)
return
VLC_EGENERIC
;
if
(
bs_read
(
s
,
32
)
!=
0x30323030
)
const
uint32_t
i_version
=
bs_read
(
s
,
32
);
if
(
i_version
!=
0x30313030
&&
i_version
!=
0x30323030
)
return
VLC_EGENERIC
;
/* */
...
...
modules/access/bd/mpls.c
View file @
add114aa
...
...
@@ -289,7 +289,8 @@ int bd_mpls_Parse( bd_mpls_t *p_mpls, bs_t *s, int i_id )
/* */
if
(
bs_read
(
s
,
32
)
!=
0x4d504c53
)
return
VLC_EGENERIC
;
if
(
bs_read
(
s
,
32
)
!=
0x30323030
)
const
uint32_t
i_version
=
bs_read
(
s
,
32
);
if
(
i_version
!=
0x30313030
&&
i_version
!=
0x30323030
)
return
VLC_EGENERIC
;
const
uint32_t
i_play_item_start
=
bs_read
(
s
,
32
);
...
...
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