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
39775073
Commit
39775073
authored
Dec 16, 2015
by
Ronald S. Bultje
Browse files
vpxenc: don't warn about libwebm availability if writing IVF.
Change-Id: I1a9635a9948458e6c83f5b58764b7e720d98e2ea
parent
b81f04a0
Changes
1
Hide whitespace changes
Inline
Side-by-side
vpxenc.c
View file @
39775073
...
...
@@ -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