From ef395a2f08e0f96d8ae5f819927b17aa88000ecb Mon Sep 17 00:00:00 2001 From: reimar Date: Sun, 3 Jan 2010 17:12:12 +0000 Subject: Replace deprecated sws_scale_ordered usages by sws_scale (which does the same). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30192 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_aa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libvo/vo_aa.c') diff --git a/libvo/vo_aa.c b/libvo/vo_aa.c index 41d5de6294..cefd88c819 100644 --- a/libvo/vo_aa.c +++ b/libvo/vo_aa.c @@ -353,7 +353,7 @@ draw_frame(uint8_t *src[]) { break; } - sws_scale_ordered(sws,src,stride,0,src_height,image,image_stride); + sws_scale(sws,src,stride,0,src_height,image,image_stride); /* Now 'ASCIInate' the image */ if (fast) @@ -373,7 +373,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_ordered(sws,src,stride,y,h,image,image_stride); + sws_scale(sws,src,stride,y,h,image,image_stride); /* Now 'ASCIInate' the image */ if (fast) -- cgit v1.2.3