Evas TGV saver: Use medium quality by default

The default quality is 80 and high quality is horribly slow,
so default to medium quality instead (it's already very slow).

If you really want to shoot yourself in the foot and use high
quality, just set quality > 95 and go make some coffee.

Also, disable dithering, it creates horrible artifacts on real
life pictures (gradients and flat surfaces especially).
This commit is contained in:
Jean-Philippe Andre 2014-04-16 18:28:56 +09:00
parent 8767a80b0d
commit 07700a799c
1 changed files with 4 additions and 2 deletions

View File

@ -42,8 +42,10 @@ evas_image_save_file_tgv(RGBA_Image *im,
width = htonl(im->cache_entry.w);
height = htonl(im->cache_entry.h);
param.m_dithering = 1;
if (quality > 70)
// Disable dithering, as it will deteriorate the quality of flat surfaces
param.m_dithering = 0;
if (quality > 95)
{
param.m_quality = rg_etc1_high_quality;
block = 7;