Andrew Talbot : qcap: Remove unused variable.

Alexandre Julliard julliard at winehq.org
Thu Apr 24 06:23:26 CDT 2008


Module: wine
Branch: master
Commit: 1e52433f017a62c1241c2d86af5e0649c5abb789
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=1e52433f017a62c1241c2d86af5e0649c5abb789

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Wed Apr 23 22:13:01 2008 +0100

qcap: Remove unused variable.

---

 dlls/qcap/yuv.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

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-cvs mailing list