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
eb46716d
Commit
eb46716d
authored
Jul 26, 2017
by
François Cartegnie
🤞
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
demux: mp4: enable 3DDS multiview
Early PS3 sequential 3D
parent
9e8a1481
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
modules/demux/mp4/essetup.c
modules/demux/mp4/essetup.c
+16
-0
No files found.
modules/demux/mp4/essetup.c
View file @
eb46716d
...
...
@@ -378,6 +378,22 @@ int SetupVideoES( demux_t *p_demux, mp4_track_t *p_track, MP4_Box_t *p_sample )
break
;
}
}
else
{
for
(
p_uuid
=
MP4_BoxGet
(
p_sample
,
"uuid"
);
p_uuid
;
p_uuid
=
p_uuid
->
p_next
)
{
if
(
p_uuid
->
i_type
==
ATOM_uuid
&&
!
CmpUUID
(
&
p_uuid
->
i_uuid
,
&
PS3DDSBoxUUID
)
&&
p_uuid
->
data
.
p_binary
&&
p_uuid
->
data
.
p_binary
->
i_blob
==
4
&&
!
memcmp
(
p_uuid
->
data
.
p_binary
->
p_blob
,
"
\x82\x81\x10\x02
"
,
4
)
)
{
p_track
->
fmt
.
video
.
multiview_mode
=
MULTIVIEW_STEREO_FRAME
;
break
;
}
}
}
const
MP4_Box_t
*
p_prhd
=
MP4_BoxGet
(
p_sample
,
"sv3d/proj/prhd"
);
if
(
p_prhd
&&
BOXDATA
(
p_prhd
))
...
...
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