changeset 7529:6b13ee6a63ca libavcodec

R and B components are stored as a differences to G component in Fraps v5. This fixes roundup issue 574.
author kostya
date Sun, 10 Aug 2008 18:15:38 +0000
parents 553ec99ac3b0
children 398636f16e7e
files fraps.c
diffstat 1 files changed, 17 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/fraps.c	Sun Aug 10 16:10:39 2008 +0000
+++ b/fraps.c	Sun Aug 10 18:15:38 2008 +0000
@@ -141,7 +141,8 @@
     const uint32_t *buf32;
     uint32_t *luma1,*luma2,*cb,*cr;
     uint32_t offs[4];
-    int i, is_chroma, planes;
+    int i, j, is_chroma, planes;
+    int R, G, B, Y, U, V;
 
 
     header = AV_RL32(buf);
@@ -323,11 +324,25 @@
         for(i = 0; i < planes; i++){
             s->tmpbuf = av_realloc(s->tmpbuf, offs[i + 1] - offs[i] - 1024 + FF_INPUT_BUFFER_PADDING_SIZE);
             if(fraps2_decode_plane(s, f->data[0] + i + (f->linesize[0] * (avctx->height - 1)), -f->linesize[0],
-                    avctx->width, avctx->height, buf + offs[i], offs[i + 1] - offs[i], 1, 3) < 0) {
+                    avctx->width, avctx->height, buf + offs[i], offs[i + 1] - offs[i], 0, 3) < 0) {
                 av_log(avctx, AV_LOG_ERROR, "Error decoding plane %i\n", i);
                 return -1;
             }
         }
+        // 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;
+            }
+        }
         break;
     }