summaryrefslogtreecommitdiffstats
path: root/libvo/vo_x11.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/vo_x11.c')
-rw-r--r--libvo/vo_x11.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libvo/vo_x11.c b/libvo/vo_x11.c
index a89734b005..4053cfd765 100644
--- a/libvo/vo_x11.c
+++ b/libvo/vo_x11.c
@@ -654,13 +654,12 @@ static int draw_slice(uint8_t * src[], int stride[], int w, int h,
{
dstStride[0] = -image_width * ((bpp + 7) / 8);
dst[0] = ImageData - dstStride[0] * (image_height - 1);
- sws_scale_ordered(swsContext, src, stride, y, h, dst, dstStride);
} else
{
dstStride[0] = image_width * ((bpp + 7) / 8);
dst[0] = ImageData;
- sws_scale_ordered(swsContext, src, stride, y, h, dst, dstStride);
}
+ sws_scale_ordered(swsContext, src, stride, y, h, dst, dstStride);
return 0;
}