Mercurial > libavcodec.hg
changeset 7535:699c33b2eabf libavcodec
Simplify colour conversion in Fraps as suggested by Michael
author | kostya |
---|---|
date | Mon, 11 Aug 2008 05:11:05 +0000 |
parents | 4891fe700813 |
children | 910087e97750 |
files | fraps.c |
diffstat | 1 files changed, 2 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- a/fraps.c Mon Aug 11 03:08:02 2008 +0000 +++ b/fraps.c Mon Aug 11 05:11:05 2008 +0000 @@ -142,7 +142,6 @@ uint32_t *luma1,*luma2,*cb,*cr; uint32_t offs[4]; int i, j, is_chroma, planes; - int R, G, B, Y, U, V; header = AV_RL32(buf); @@ -332,15 +331,8 @@ // convert pseudo-YUV into real RGB for(j = 0; j < avctx->height; j++){ for(i = 0; i < avctx->width; i++){ - U = f->data[0][0 + i*3 + j*f->linesize[0]]; - Y = f->data[0][1 + i*3 + j*f->linesize[0]]; - V = f->data[0][2 + i*3 + j*f->linesize[0]]; - R = Y + (int8_t)U; - G = Y; - B = Y + (int8_t)V; - f->data[0][0 + i*3 + j*f->linesize[0]] = R; - f->data[0][1 + i*3 + j*f->linesize[0]] = G; - f->data[0][2 + i*3 + j*f->linesize[0]] = B; + f->data[0][0 + i*3 + j*f->linesize[0]] += f->data[0][1 + i*3 + j*f->linesize[0]]; + f->data[0][2 + i*3 + j*f->linesize[0]] += f->data[0][1 + i*3 + j*f->linesize[0]]; } } break;