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
b4b3e6a1
Commit
b4b3e6a1
authored
Feb 11, 2006
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Feb 11, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle ICM_CONFIGURE request in ICCVID and MSVIDC32 codecs.
parent
cad99811
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
iccvid.c
dlls/iccvid/iccvid.c
+3
-0
msvideo1.c
dlls/msvidc32/msvideo1.c
+4
-0
No files found.
dlls/iccvid/iccvid.c
View file @
b4b3e6a1
...
...
@@ -1006,6 +1006,9 @@ LRESULT WINAPI ICCVID_DriverProc( DWORD_PTR dwDriverId, HDRVR hdrvr, UINT msg,
FIXME
(
"compression not implemented
\n
"
);
return
ICERR_BADFORMAT
;
case
ICM_CONFIGURE
:
return
ICERR_UNSUPPORTED
;
default:
FIXME
(
"Unknown message: %04x %ld %ld
\n
"
,
msg
,
lParam1
,
lParam2
);
}
...
...
dlls/msvidc32/msvideo1.c
View file @
b4b3e6a1
...
...
@@ -566,6 +566,10 @@ LRESULT WINAPI CRAM_DriverProc( DWORD_PTR dwDriverId, HDRVR hdrvr, UINT msg,
r
=
ICERR_BADFORMAT
;
break
;
case
ICM_CONFIGURE
:
r
=
ICERR_UNSUPPORTED
;
break
;
default:
FIXME
(
"Unknown message: %04x %ld %ld
\n
"
,
msg
,
lParam1
,
lParam2
);
}
...
...
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