don't default to the slowest aspect ratio correcter; rather use the medium one (good quality with acceptable speed)

svn-id: r8715
This commit is contained in:
Max Horn 2003-07-02 14:47:06 +00:00
parent f27b711e79
commit 621e356b42

View File

@ -659,7 +659,7 @@ static inline uint16 interpolate5(uint16 A, uint16 B, int scale) {
}
static inline void interpolate5Line(uint16 *dst, const uint16 *srcA, const uint16 *srcB, int scale, int width) {
#if 1
#if 0
// Accurate but slightly slower code
while (width--) {
*dst++ = interpolate5(*srcA++, *srcB++, scale);