Commit 1e52433f authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

qcap: Remove unused variable.

parent 91d5844f
...@@ -140,14 +140,13 @@ static void Parse_PYUV(unsigned char *destbuffer, const unsigned char *input, in ...@@ -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 */ /* We have 3 pointers, One to Y, one to Cb and 1 to Cr */
/* C19 *89* declaration block (Grr julliard for not allowing C99) */ /* C19 *89* declaration block (Grr julliard for not allowing C99) */
int uvjump, ysize, uvsize; int ysize, uvsize;
const unsigned char *pY, *pCb, *pCr; const unsigned char *pY, *pCb, *pCr;
int swstep = 0, shstep = 0; int swstep = 0, shstep = 0;
int ypos = 0, xpos = 0; int ypos = 0, xpos = 0;
int indexUV = 0, cUv; int indexUV = 0, cUv;
/* End of Grr */ /* End of Grr */
uvjump = width / wstep;
ysize = width * height; ysize = width * height;
uvsize = (width / wstep) * (height / hstep); uvsize = (width / wstep) * (height / hstep);
pY = input; pY = input;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment