Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
9e8a1481
Commit
9e8a1481
authored
Jul 26, 2017
by
François Cartegnie
🤞
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
demux: libmp4: add and parse 3DDS uuid
parent
78f07cef
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
modules/demux/mp4/libmp4.c
modules/demux/mp4/libmp4.c
+2
-0
modules/demux/mp4/libmp4.h
modules/demux/mp4/libmp4.h
+5
-0
No files found.
modules/demux/mp4/libmp4.c
View file @
9e8a1481
...
...
@@ -4174,6 +4174,8 @@ static int MP4_ReadBox_uuid( stream_t *p_stream, MP4_Box_t *p_box )
return
MP4_ReadBox_tfxd
(
p_stream
,
p_box
);
if
(
!
CmpUUID
(
&
p_box
->
i_uuid
,
&
XML360BoxUUID
)
)
return
MP4_ReadBox_XML360
(
p_stream
,
p_box
);
if
(
!
CmpUUID
(
&
p_box
->
i_uuid
,
&
PS3DDSBoxUUID
)
&&
p_box
->
i_size
==
28
)
return
MP4_ReadBox_Binary
(
p_stream
,
p_box
);
#ifdef MP4_VERBOSE
msg_Warn
(
p_stream
,
"Unknown uuid type box: "
...
...
modules/demux/mp4/libmp4.h
View file @
9e8a1481
...
...
@@ -1896,6 +1896,11 @@ static const UUID_t XML360BoxUUID = {
{
0xff
,
0xcc
,
0x82
,
0x63
,
0xf8
,
0x55
,
0x4a
,
0x93
,
0x88
,
0x14
,
0x58
,
0x7a
,
0x02
,
0x52
,
0x1f
,
0xdd
}
};
/* PS3 3D by HMMP video encoder */
static
const
UUID_t
PS3DDSBoxUUID
=
{
{
0x33
,
0x44
,
0x44
,
0x53
,
0x21
,
0xd2
,
0x4f
,
0xce
,
0xbb
,
0x88
,
0x69
,
0x5c
,
0xfa
,
0xc9
,
0xc7
,
0x40
}
};
/*****************************************************************************
* MP4_Seek : non seekable stream safe seek
****************************************************************************/
...
...
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