diff options
author | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-12-25 11:40:05 +0000 |
---|---|---|
committer | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-12-26 07:21:17 +0000 |
commit | 072b8a1894fc24473c9ec4d30dc1019c5e57a921 (patch) | |
tree | d34a6d44f14951c5d288f9e55d3ccbb09020f27b | |
parent | 545c89461464ee14b2b806dd2dd2c0eef110e181 (diff) |
Fix ETC quality setting
-rw-r--r-- | modules/etc/image_compress_etc.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/etc/image_compress_etc.cpp b/modules/etc/image_compress_etc.cpp index bcdea41b43..552d3025f4 100644 --- a/modules/etc/image_compress_etc.cpp +++ b/modules/etc/image_compress_etc.cpp @@ -166,12 +166,12 @@ static void _compress_etc(Image *p_img, float p_lossy_quality, bool force_etc1_f int encoding_time = 0; float effort = 0.0; //default, reasonable time - if (p_lossy_quality > 0.75) { - effort = 0.4; + if (p_lossy_quality > 0.95) { + effort = 80; } else if (p_lossy_quality > 0.85) { - effort = 0.6; - } else if (p_lossy_quality > 0.95) { - effort = 0.8; + effort = 60; + } else if (p_lossy_quality > 0.75) { + effort = 40; } Etc::ErrorMetric error_metric = Etc::ErrorMetric::RGBX; // NOTE: we can experiment with other error metrics |