diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2018-02-24 18:04:08 +0100 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2018-02-24 18:35:30 +0100 |
commit | fd0e41ae0bc0c7b22f9534c38ed7373d86d55a3d (patch) | |
tree | e8829c9a43d04c60547e1f6007b9555483a0629f | |
parent | 5dd924ab75c9a695b34a754b718af16a694fb452 (diff) | |
download | nihav-fd0e41ae0bc0c7b22f9534c38ed7373d86d55a3d.tar.gz |
clearvideo: do not output images in test, the decoder works
-rw-r--r-- | src/codecs/clearvideo.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codecs/clearvideo.rs b/src/codecs/clearvideo.rs index 7b31c0d..0c2de9b 100644 --- a/src/codecs/clearvideo.rs +++ b/src/codecs/clearvideo.rs @@ -774,7 +774,7 @@ mod test { use test::dec_video::test_file_decoding; #[test] fn test_clv() { - test_file_decoding("avi", "assets/TalkingHead_352x288.avi", Some(10), true, false, Some("clv")); + test_file_decoding("avi", "assets/TalkingHead_352x288.avi", Some(10), true, false, None/*Some("clv")*/); // test_file_decoding("avi", "assets/basketball.avi", None/*Some(10)*/, true, false, Some("clv1")); //panic!("debug"); } |