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
rav1e
Commits
6d330d26
Commit
6d330d26
authored
Jun 15, 2019
by
Luca Barbato
Committed by
Luca Barbato
Jun 15, 2019
Browse files
Keep the default muxer as ivf
Unbreaks the `-o /dev/null` use-case.
parent
37ac909f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/bin/muxer/mod.rs
View file @
6d330d26
...
...
@@ -44,7 +44,7 @@ pub fn create_muxer(path: &str) -> Box<dyn Muxer> {
.extension
()
.and_then
(
OsStr
::
to_str
)
.map
(
str
::
to_lowercase
)
.
expect
(
"no extension"
);
.
unwrap_or_else
(||
"ivf"
.into
()
);
match
&
ext
[
..
]
{
"mp4"
=>
{
...
...
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