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:
parent
f27b711e79
commit
621e356b42
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
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
|
// Accurate but slightly slower code
|
||||||
while (width--) {
|
while (width--) {
|
||||||
*dst++ = interpolate5(*srcA++, *srcB++, scale);
|
*dst++ = interpolate5(*srcA++, *srcB++, scale);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue