diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2017-08-13 13:26:40 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2017-08-13 13:26:40 +0200 |
commit | cba93534fcd08cb3b1951d217f6b2cb0cadbbf90 (patch) | |
tree | 00755388bd9b260be841a34b082c6f3aa514f433 | |
parent | f6424fca650097e8fc98d78da81b946df826bcb0 (diff) | |
download | nihav-cba93534fcd08cb3b1951d217f6b2cb0cadbbf90.tar.gz |
indeo4: no need to panic
-rw-r--r-- | src/codecs/indeo/indeo4.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codecs/indeo/indeo4.rs b/src/codecs/indeo/indeo4.rs index e43fc45..4dbff2a 100644 --- a/src/codecs/indeo/indeo4.rs +++ b/src/codecs/indeo/indeo4.rs @@ -769,6 +769,6 @@ mod test { #[test] fn test_indeo4() { test_file_decoding("avi", "assets/IV4/volcano.avi", /*None*/Some(16), true, false, Some("iv4")); -panic!("the end"); +//panic!("the end"); } } |