diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2020-06-15 19:06:27 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2020-06-15 19:06:27 +0200 |
commit | 36ce88be3f590a876fe539c8f631a58af2ea2cac (patch) | |
tree | e5a7f98b0c6a2c05f45f8b0955d7369e34c556e0 | |
parent | 592d288947c53bae97b76985c70f37e2b0ff820f (diff) | |
download | nihav-36ce88be3f590a876fe539c8f631a58af2ea2cac.tar.gz |
cinepakenc: switch default quantisation mode to median cut
-rw-r--r-- | nihav-commonfmt/src/codecs/cinepakenc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nihav-commonfmt/src/codecs/cinepakenc.rs b/nihav-commonfmt/src/codecs/cinepakenc.rs index bf6c25c..09bb112 100644 --- a/nihav-commonfmt/src/codecs/cinepakenc.rs +++ b/nihav-commonfmt/src/codecs/cinepakenc.rs @@ -272,7 +272,7 @@ impl CinepakEncoder { pkt: None, lastfrm: None, frmcount: 0, - qmode: QuantMode::ELBG, + qmode: QuantMode::MedianCut, key_int: 25, quality: 0, nstrips: 2, |