Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefan Westerfeld
ffmpeg
Commits
52795d7f
Commit
52795d7f
authored
Jun 20, 2021
by
Matthieu Patou
Committed by
Thilo Borgmann
Jun 20, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf/webmdashenc.c: Allow AV1 video in WebM
Suggested-By: ffmpeg@fb.com
parent
602bbf71
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
version.h
libavformat/version.h
+1
-1
webmdashenc.c
libavformat/webmdashenc.c
+2
-1
No files found.
libavformat/version.h
View file @
52795d7f
...
...
@@ -33,7 +33,7 @@
// Also please add any ticket numbers that you believe might be affected here
#define LIBAVFORMAT_VERSION_MAJOR 59
#define LIBAVFORMAT_VERSION_MINOR 3
#define LIBAVFORMAT_VERSION_MICRO 10
0
#define LIBAVFORMAT_VERSION_MICRO 10
1
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
LIBAVFORMAT_VERSION_MINOR, \
...
...
libavformat/webmdashenc.c
View file @
52795d7f
...
...
@@ -480,7 +480,8 @@ static int webm_dash_manifest_write_header(AVFormatContext *s)
for
(
unsigned
i
=
0
;
i
<
s
->
nb_streams
;
i
++
)
{
enum
AVCodecID
codec_id
=
s
->
streams
[
i
]
->
codecpar
->
codec_id
;
if
(
codec_id
!=
AV_CODEC_ID_VP8
&&
codec_id
!=
AV_CODEC_ID_VP9
&&
codec_id
!=
AV_CODEC_ID_VORBIS
&&
codec_id
!=
AV_CODEC_ID_OPUS
)
codec_id
!=
AV_CODEC_ID_AV1
&&
codec_id
!=
AV_CODEC_ID_VORBIS
&&
codec_id
!=
AV_CODEC_ID_OPUS
)
return
AVERROR
(
EINVAL
);
}
...
...
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