Mercurial > mplayer.hg
changeset 4796:b4580c55d8bc
fixing scaled output
author | michael |
---|---|
date | Thu, 21 Feb 2002 21:15:40 +0000 |
parents | b18e61cb457a |
children | b1a2469e78ac |
files | libvo/vo_png.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/vo_png.c Thu Feb 21 21:11:01 2002 +0000 +++ b/libvo/vo_png.c Thu Feb 21 21:15:40 2002 +0000 @@ -94,8 +94,8 @@ 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: