Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
1e52433f
Commit
1e52433f
authored
Apr 23, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Apr 24, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qcap: Remove unused variable.
parent
91d5844f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
yuv.c
dlls/qcap/yuv.c
+1
-2
No files found.
dlls/qcap/yuv.c
View file @
1e52433f
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment