Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
cd6a14d7
Commit
cd6a14d7
authored
Oct 20, 2013
by
Denis Charmet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add VP9 support in mkv
Close #9341
parent
6f7d9be5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
modules/codec/avcodec/fourcc.c
modules/codec/avcodec/fourcc.c
+1
-0
modules/demux/mkv/matroska_segment_parse.cpp
modules/demux/mkv/matroska_segment_parse.cpp
+5
-0
No files found.
modules/codec/avcodec/fourcc.c
View file @
cd6a14d7
...
...
@@ -184,6 +184,7 @@ static const struct
{
VLC_CODEC_INDEO5
,
AV_CODEC_ID_INDEO5
,
VIDEO_ES
},
{
VLC_CODEC_VP8
,
AV_CODEC_ID_VP8
,
VIDEO_ES
},
{
VLC_CODEC_VP9
,
AV_CODEC_ID_VP9
,
VIDEO_ES
},
{
VLC_CODEC_LAGARITH
,
AV_CODEC_ID_LAGARITH
,
VIDEO_ES
},
...
...
modules/demux/mkv/matroska_segment_parse.cpp
View file @
cd6a14d7
...
...
@@ -1349,6 +1349,11 @@ int32_t matroska_segment_c::TrackInit( mkv_track_t * p_tk )
p_tk
->
fmt
.
i_codec
=
VLC_CODEC_VP8
;
p_tk
->
b_pts_only
=
true
;
}
else
if
(
!
strncmp
(
p_tk
->
psz_codec
,
"V_VP9"
,
5
)
)
{
p_tk
->
fmt
.
i_codec
=
VLC_CODEC_VP9
;
fill_extra_data
(
p_tk
,
0
);
}
else
if
(
!
strncmp
(
p_tk
->
psz_codec
,
"V_MPEG4"
,
7
)
)
{
if
(
!
strcmp
(
p_tk
->
psz_codec
,
"V_MPEG4/MS/V3"
)
)
...
...
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