diff options
author | Søren Sandmann Pedersen <ssp@redhat.com> | 2013-09-04 22:32:15 -0400 |
---|---|---|
committer | Søren Sandmann Pedersen <ssp@redhat.com> | 2013-09-07 17:19:50 -0400 |
commit | a4c79d695d52c94647b1aff78548e5892d616b70 (patch) | |
tree | bc2630aad55d2d91537ff09e20bbf61c33be10eb /test/scaling-test.c | |
parent | 80a232db68fcff6460e8704da6a97ee2e6971e99 (diff) |
Drop support for 8-bit precision in bilinear filtering
The default has been 7-bit for a while now, and the quality
improvement with 8-bit precision is not enough to justify keeping the
code around as a compile-time option.
Diffstat (limited to 'test/scaling-test.c')
-rw-r--r-- | test/scaling-test.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/scaling-test.c b/test/scaling-test.c index a8cb4c4..b4142a7 100644 --- a/test/scaling-test.c +++ b/test/scaling-test.c @@ -375,9 +375,7 @@ test_composite (int testnum, return crc32; } -#if BILINEAR_INTERPOLATION_BITS == 8 -#define CHECKSUM 0x9096E6B6 -#elif BILINEAR_INTERPOLATION_BITS == 7 +#if BILINEAR_INTERPOLATION_BITS == 7 #define CHECKSUM 0xCE8EC6BA #elif BILINEAR_INTERPOLATION_BITS == 4 #define CHECKSUM 0xAB1D39BE |