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
4a9d238c
Commit
4a9d238c
authored
Oct 20, 2015
by
Bruno Jesus
Committed by
Alexandre Julliard
Oct 21, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvfw32: Improve tracing from ICSeqCompressFrameStart.
Signed-off-by:
Bruno Jesus
<
00cpxxx@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4cb36b9a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
6 deletions
+16
-6
msvideo_main.c
dlls/msvfw32/msvideo_main.c
+16
-6
No files found.
dlls/msvfw32/msvideo_main.c
View file @
4a9d238c
...
...
@@ -1445,6 +1445,17 @@ BOOL VFWAPI ICSeqCompressFrameStart(PCOMPVARS pc, LPBITMAPINFO lpbiIn)
pc
->
cbState
=
sizeof
(
ICCOMPRESS
);
TRACE
(
"Input: %ux%u, fcc %s, bpp %u, size %u
\n
"
,
pc
->
lpbiIn
->
bmiHeader
.
biWidth
,
pc
->
lpbiIn
->
bmiHeader
.
biHeight
,
wine_dbgstr_fcc
(
pc
->
lpbiIn
->
bmiHeader
.
biCompression
),
pc
->
lpbiIn
->
bmiHeader
.
biBitCount
,
pc
->
lpbiIn
->
bmiHeader
.
biSizeImage
);
TRACE
(
"Output: %ux%u, fcc %s, bpp %u, size %u
\n
"
,
pc
->
lpbiOut
->
bmiHeader
.
biWidth
,
pc
->
lpbiOut
->
bmiHeader
.
biHeight
,
wine_dbgstr_fcc
(
pc
->
lpbiOut
->
bmiHeader
.
biCompression
),
pc
->
lpbiOut
->
bmiHeader
.
biBitCount
,
pc
->
lpbiOut
->
bmiHeader
.
biSizeImage
);
/* Buffer for compressed frame data */
pc
->
lpBitsOut
=
HeapAlloc
(
GetProcessHeap
(),
0
,
pc
->
lpbiOut
->
bmiHeader
.
biSizeImage
);
if
(
!
pc
->
lpBitsOut
)
...
...
@@ -1456,15 +1467,14 @@ BOOL VFWAPI ICSeqCompressFrameStart(PCOMPVARS pc, LPBITMAPINFO lpbiIn)
goto
error
;
TRACE
(
"Compvars:
\n
"
"
\t
pc:
\n
"
"
\t
size: %i
\n
"
"
\t
flags:
%i
\n
"
"
\t
flags:
0x%x
\n
"
"
\t
hic: %p
\n
"
"
\t
type: %x
\n
"
"
\t
handler: %
x
\n
"
"
\t
type:
0x
%x
\n
"
"
\t
handler: %
s
\n
"
"
\t
in/out: %p/%p
\n
"
"key/data/quality: %i/%i/%i
\n
"
,
pc
->
cbSize
,
pc
->
dwFlags
,
pc
->
hic
,
pc
->
fccType
,
pc
->
fccHandler
,
"
\t
key/data/quality: %i/%i/%i
\n
"
,
pc
->
cbSize
,
pc
->
dwFlags
,
pc
->
hic
,
pc
->
fccType
,
wine_dbgstr_fcc
(
pc
->
fccHandler
)
,
pc
->
lpbiIn
,
pc
->
lpbiOut
,
pc
->
lKey
,
pc
->
lDataRate
,
pc
->
lQ
);
ret
=
ICSendMessage
(
pc
->
hic
,
ICM_COMPRESS_BEGIN
,
(
DWORD_PTR
)
pc
->
lpbiIn
,
(
DWORD_PTR
)
pc
->
lpbiOut
);
...
...
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