Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
ba9b2072
Commit
ba9b2072
authored
Apr 24, 2010
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Apr 26, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvidc32: Remove variable bit_per_pixel which is not really used from…
msvidc32: Remove variable bit_per_pixel which is not really used from CRAM_Decompress and CRAM_DecompressEx.
parent
6cad49da
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
4 deletions
+0
-4
msvideo1.c
dlls/msvidc32/msvideo1.c
+0
-4
No files found.
dlls/msvidc32/msvideo1.c
View file @
ba9b2072
...
...
@@ -385,7 +385,6 @@ static LRESULT CRAM_DecompressBegin( Msvideo1Context *info, LPBITMAPINFO in, LPB
static
LRESULT
CRAM_Decompress
(
Msvideo1Context
*
info
,
ICDECOMPRESS
*
icd
,
DWORD
size
)
{
LONG
width
,
height
,
stride
,
sz
;
WORD
bit_per_pixel
;
TRACE
(
"ICM_DECOMPRESS %p %p %d
\n
"
,
info
,
icd
,
size
);
...
...
@@ -396,7 +395,6 @@ static LRESULT CRAM_Decompress( Msvideo1Context *info, ICDECOMPRESS *icd, DWORD
width
=
icd
->
lpbiInput
->
biWidth
;
height
=
icd
->
lpbiInput
->
biHeight
;
bit_per_pixel
=
icd
->
lpbiInput
->
biBitCount
;
stride
=
width
;
/* in bytes or 16bit words */
sz
=
icd
->
lpbiInput
->
biSizeImage
;
...
...
@@ -417,7 +415,6 @@ static LRESULT CRAM_Decompress( Msvideo1Context *info, ICDECOMPRESS *icd, DWORD
static
LRESULT
CRAM_DecompressEx
(
Msvideo1Context
*
info
,
ICDECOMPRESSEX
*
icd
,
DWORD
size
)
{
LONG
width
,
height
,
stride
,
sz
;
WORD
bit_per_pixel
;
TRACE
(
"ICM_DECOMPRESSEX %p %p %d
\n
"
,
info
,
icd
,
size
);
...
...
@@ -428,7 +425,6 @@ static LRESULT CRAM_DecompressEx( Msvideo1Context *info, ICDECOMPRESSEX *icd, DW
width
=
icd
->
lpbiSrc
->
biWidth
;
height
=
icd
->
lpbiSrc
->
biHeight
;
bit_per_pixel
=
icd
->
lpbiSrc
->
biBitCount
;
stride
=
width
;
sz
=
icd
->
lpbiSrc
->
biSizeImage
;
...
...
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