Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
a71dcd6f
Commit
a71dcd6f
authored
Dec 16, 2015
by
James Zern
Committed by
Gerrit Code Review
Dec 16, 2015
Browse files
Merge "vpxenc: don't warn about libwebm availability if writing IVF."
parents
e6501296
39775073
Changes
1
Hide whitespace changes
Inline
Side-by-side
vpxenc.c
View file @
a71dcd6f
...
...
@@ -2060,9 +2060,11 @@ int main(int argc, const char **argv_) {
#if !CONFIG_WEBM_IO
FOREACH_STREAM
({
stream
->
config
.
write_webm
=
0
;
warn
(
"vpxenc was compiled without WebM container support."
"Producing IVF output"
);
if
(
stream
->
config
.
write_webm
)
{
stream
->
config
.
write_webm
=
0
;
warn
(
"vpxenc was compiled without WebM container support."
"Producing IVF output"
);
}
});
#endif
...
...
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