summaryrefslogtreecommitdiffstats
path: root/libvo/vo_png.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/vo_png.c')
-rw-r--r--libvo/vo_png.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_png.c b/libvo/vo_png.c
index 2ee152ef8a..15324bc619 100644
--- a/libvo/vo_png.c
+++ b/libvo/vo_png.c
@@ -94,8 +94,8 @@ config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uin
case IMGFMT_I420:
case IMGFMT_YV12:
bpp = 24;
- cspace = RGB;
- yuv2rgb_init(bpp,MODE_BGR);
+ cspace = BGR;
+ yuv2rgb_init(bpp,MODE_RGB);
image_data = malloc(image_width*image_height*3);
break;
default: