Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
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
Options
Browse Files
Download
Plain Diff
Merge "vpxenc: don't warn about libwebm availability if writing IVF."
parents
e6501296
39775073
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
vpxenc.c
vpxenc.c
+5
-3
No files found.
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