summaryrefslogtreecommitdiff
path: root/src/video_out/yuv2rgb_mlib.c
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2009-12-17 18:48:07 +0000
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2009-12-17 18:48:07 +0000
commit926093783c7367a23291063bcafc199aee2b12eb (patch)
tree4165a6c04853d315293b39be646acef485684cc1 /src/video_out/yuv2rgb_mlib.c
parent44a9e76d27c08c715df5c79f2ad3308eeadef205 (diff)
parent8bd8e600bf475426cbcd5b8f8f89fb2d6e53ec29 (diff)
downloadxine-lib-926093783c7367a23291063bcafc199aee2b12eb.tar.gz
xine-lib-926093783c7367a23291063bcafc199aee2b12eb.tar.bz2
Merge from 1.2 main.
Diffstat (limited to 'src/video_out/yuv2rgb_mlib.c')
-rw-r--r--src/video_out/yuv2rgb_mlib.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/video_out/yuv2rgb_mlib.c b/src/video_out/yuv2rgb_mlib.c
index b32817a90..cde7941bc 100644
--- a/src/video_out/yuv2rgb_mlib.c
+++ b/src/video_out/yuv2rgb_mlib.c
@@ -51,7 +51,7 @@ static void mlib_yuv420_rgb24(yuv2rgb_t *this,
mlib_s32 resize_stride = this->dest_width << 2;
mlib_VideoColorYUV420seq_to_ARGBint((mlib_u32*)this->mlib_buffer,
- py, pu, pv, py, 0,
+ py, pu, pv, py, 0,
this->source_width,
src_height,
this->source_width<<2,
@@ -88,7 +88,7 @@ static void mlib_yuv420_argb32(yuv2rgb_t *this,
dst_height = this->next_slice(this, &image);
if (this->do_scale) {
mlib_VideoColorYUV420seq_to_ARGBint((mlib_u32*)this->mlib_buffer,
- py, pu, pv, py, 0,
+ py, pu, pv, py, 0,
this->source_width,
src_height,
this->source_width<<2,
@@ -101,7 +101,7 @@ static void mlib_yuv420_argb32(yuv2rgb_t *this,
this->mlib_filter_type);
} else {
mlib_VideoColorYUV420seq_to_ARGBint((mlib_u32*)image,
- py, pu, pv, py, 0,
+ py, pu, pv, py, 0,
this->source_width,
dst_height,
this->rgb_stride,
@@ -127,7 +127,7 @@ static void mlib_yuv420_abgr32(yuv2rgb_t *this,
dst_height = this->next_slice (this, &image);
if (this->do_scale) {
mlib_VideoColorYUV420seq_to_ABGRint((mlib_u32*)this->mlib_buffer,
- py, pu, pv, py, 0,
+ py, pu, pv, py, 0,
this->source_width,
src_height,
this->source_width<<2,
@@ -141,7 +141,7 @@ static void mlib_yuv420_abgr32(yuv2rgb_t *this,
}
else {
mlib_VideoColorYUV420seq_to_ABGRint((mlib_u32*)image,
- py, pu, pv, py, 0,
+ py, pu, pv, py, 0,
this->source_width,
dst_height,
this->rgb_stride,