diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2020-07-09 10:44:52 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2020-07-09 10:44:52 +0200 |
commit | fabefb1bbbe0989b89e588a9409679cf3096d2d8 (patch) | |
tree | 01fb883eff0b5c49abae1c5c07122133b62a7b47 | |
parent | 7cd3b41eda101ea5b3e36d73436c68a5b5d4f030 (diff) | |
download | nihav-tool-fabefb1bbbe0989b89e588a9409679cf3096d2d8.tar.gz |
silently ignore decoders that are neither audio nor video
-rw-r--r-- | src/main.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 79212fd..76e720e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -230,7 +230,6 @@ println!("stream {} - {} {}", i, s, info.get_name()); } } else { decs.push(None); -panic!("decoder {} not found", info.get_name()); } if !has_out { writers.push(Outputter::None); |