qcap: Remove unused variable

Andrew Talbot andrew.talbot at talbotville.com
Wed Apr 23 16:13:01 CDT 2008


Changelog:
    qcap: Remove unused variable.

diff --git a/dlls/qcap/yuv.c b/dlls/qcap/yuv.c
index 26048e1..29aa1f2 100644
--- a/dlls/qcap/yuv.c
+++ b/dlls/qcap/yuv.c
@@ -140,14 +140,13 @@ static void Parse_PYUV(unsigned char *destbuffer, const unsigned char *input, in
    /* We have 3 pointers, One to Y, one to Cb and 1 to Cr */
 
 /* C19 *89* declaration block (Grr julliard for not allowing C99) */
-   int uvjump, ysize, uvsize;
+   int ysize, uvsize;
    const unsigned char *pY, *pCb, *pCr;
    int swstep = 0, shstep = 0;
    int ypos = 0, xpos = 0;
    int indexUV = 0, cUv;
 /* End of Grr */
 
-   uvjump = width / wstep;
    ysize = width * height;
    uvsize = (width / wstep) * (height / hstep);
    pY = input;



More information about the wine-patches mailing list