diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2021-10-18 18:52:46 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2021-10-18 18:56:38 +0200 |
commit | 85d4be529371a979026a49d43e7ba73793f1e096 (patch) | |
tree | d8a9db2def55b03ad132eb418aa6025b7078e7c9 | |
parent | 9d2db2234d6c97dd13f6ca693d370b1e67bd8bed (diff) | |
download | nihav-85d4be529371a979026a49d43e7ba73793f1e096.tar.gz |
ms/imaadpcmenc: disable encoding to file in tests
-rw-r--r-- | nihav-ms/src/codecs/imaadpcmenc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nihav-ms/src/codecs/imaadpcmenc.rs b/nihav-ms/src/codecs/imaadpcmenc.rs index a64f58f..45e8d21 100644 --- a/nihav-ms/src/codecs/imaadpcmenc.rs +++ b/nihav-ms/src/codecs/imaadpcmenc.rs @@ -371,7 +371,7 @@ mod test { let enc_options = &[ NAOption{name: "trellis", value: NAValue::Bool(trellis)}, ]; - test_encoding_to_file(&dec_config, &enc_config, enc_params, enc_options); +// test_encoding_to_file(&dec_config, &enc_config, enc_params, enc_options); test_encoding_md5(&dec_config, &enc_config, enc_params, enc_options, hash); |