diff libvo/vo_aa.c @ 9697:5025150738eb

10000l (YUV vs. YVU swscale fix/cleanup)
author michael
date Thu, 27 Mar 2003 16:04:53 +0000
parents 78e86ff778b7
children bf1c43b41f50
line wrap: on
line diff
--- a/libvo/vo_aa.c	Wed Mar 26 23:59:07 2003 +0000
+++ b/libvo/vo_aa.c	Thu Mar 27 16:04:53 2003 +0000
@@ -360,7 +360,7 @@
     break;
   }
 
-  sws_scale(sws,src,stride,0,src_height,image,image_stride);
+  sws_scale_ordered(sws,src,stride,0,src_height,image,image_stride);
 
    /* Now 'ASCIInate' the image */ 
   if (fast)
@@ -380,7 +380,7 @@
   int dx2 = screen_x + ((x+w) * screen_w / src_width);
   int dy2 = screen_y + ((y+h) * screen_h / src_height);
 
-  sws_scale(sws,src,stride,y,h,image,image_stride);
+  sws_scale_ordered(sws,src,stride,y,h,image,image_stride);
 
   /* Now 'ASCIInate' the image */ 
   if (fast)