Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
454
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
914c8dde
Commit
914c8dde
authored
8 years ago
by
François Cartegnie
Browse files
Options
Downloads
Patches
Plain Diff
demux: mp4: add support for VP8/VP9/VP10
parent
b4ba5c4f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NEWS
+1
-0
1 addition, 0 deletions
NEWS
modules/demux/mp4/essetup.c
+21
-0
21 additions, 0 deletions
modules/demux/mp4/essetup.c
with
22 additions
and
0 deletions
NEWS
+
1
−
0
View file @
914c8dde
...
...
@@ -97,6 +97,7 @@ Demuxers:
* Support SCTE-18 / EAS inside TS
* Support for RTP Reception Hint Track In MP4 with H.264, GSM and Speex payloads.
* Support for XiphQt(MP4) vorbis and Flac
* Support for VP8/VP9/VP10 in MP4
Stream filter:
* Added ARIB STD-B25 TS streams decoder
...
...
This diff is collapsed.
Click to expand it.
modules/demux/mp4/essetup.c
+
21
−
0
View file @
914c8dde
...
...
@@ -562,6 +562,27 @@ int SetupVideoES( demux_t *p_demux, mp4_track_t *p_track, MP4_Box_t *p_sample )
break
;
}
case
ATOM_vp08
:
case
ATOM_vp09
:
case
ATOM_vp10
:
{
const
MP4_Box_t
*
p_vpcC
=
MP4_BoxGet
(
p_sample
,
"vpcC"
);
if
(
p_vpcC
&&
BOXDATA
(
p_vpcC
)
)
{
const
MP4_Box_data_vpcC_t
*
p_data
=
BOXDATA
(
p_vpcC
);
if
(
p_sample
->
i_type
==
ATOM_vp10
)
p_track
->
fmt
.
i_codec
=
VLC_CODEC_VP10
;
else
if
(
p_sample
->
i_type
==
ATOM_vp09
)
p_track
->
fmt
.
i_codec
=
VLC_CODEC_VP9
;
else
p_track
->
fmt
.
i_codec
=
VLC_CODEC_VP8
;
p_track
->
fmt
.
i_profile
=
p_data
->
i_profile
;
p_track
->
fmt
.
i_level
=
p_data
->
i_level
;
p_track
->
fmt
.
i_extra
=
p_data
->
i_codec_init_datasize
;
memcpy
(
p_track
->
fmt
.
p_extra
,
p_data
->
p_codec_init_data
,
p_data
->
i_codec_init_datasize
);
}
}
case
ATOM_WMV3
:
{
MP4_Box_t
*
p_strf
=
MP4_BoxGet
(
p_sample
,
"strf"
,
0
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment