summaryrefslogtreecommitdiffstats
path: root/libvo/vo_aa.c
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-03-27 16:04:53 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-03-27 16:04:53 +0000
commit20faf3dc0d48c4daf2f29322f961ed18b6d82ae4 (patch)
tree06cf4c4f6cec1379c33f22f1b3dc06f55a70d66c /libvo/vo_aa.c
parentba39e1594824d05ef32d6c7457b5c2250c7be250 (diff)
downloadmpv-20faf3dc0d48c4daf2f29322f961ed18b6d82ae4.tar.bz2
mpv-20faf3dc0d48c4daf2f29322f961ed18b6d82ae4.tar.xz
10000l (YUV vs. YVU swscale fix/cleanup)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9698 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_aa.c')
-rw-r--r--libvo/vo_aa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_aa.c b/libvo/vo_aa.c
index 770a1c45ec..a8ee832b39 100644
--- a/libvo/vo_aa.c
+++ b/libvo/vo_aa.c
@@ -360,7 +360,7 @@ draw_frame(uint8_t *src[]) {
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 @@ draw_slice(uint8_t *src[], int stride[],
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)