Module: wine Branch: master Commit: 1e52433f017a62c1241c2d86af5e0649c5abb789 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1e52433f017a62c1241c2d86af... Author: Andrew Talbot <andrew.talbot(a)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;