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
d31adc8e
Commit
d31adc8e
authored
Dec 07, 2008
by
Jeff Zaroyko
Committed by
Alexandre Julliard
Dec 08, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imaadp32: Report the same driver details as windows.
parent
cb5ac00c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
imaadp32.c
dlls/imaadp32.acm/imaadp32.c
+7
-7
No files found.
dlls/imaadp32.acm/imaadp32.c
View file @
d31adc8e
...
...
@@ -472,17 +472,17 @@ static LRESULT ADPCM_DriverDetails(PACMDRIVERDETAILSW add)
{
add
->
fccType
=
ACMDRIVERDETAILS_FCCTYPE_AUDIOCODEC
;
add
->
fccComp
=
ACMDRIVERDETAILS_FCCCOMP_UNDEFINED
;
add
->
wMid
=
0x
FF
;
add
->
wPid
=
0x
00
;
add
->
vdwACM
=
0x
0100
0000
;
add
->
vdwDriver
=
0x0
1
000000
;
add
->
wMid
=
0x
1
;
add
->
wPid
=
0x
22
;
add
->
vdwACM
=
0x
332
0000
;
add
->
vdwDriver
=
0x0
4
000000
;
add
->
fdwSupport
=
ACMDRIVERDETAILS_SUPPORTF_CODEC
;
add
->
cFormatTags
=
2
;
/* PCM, IMA ADPCM */
add
->
cFilterTags
=
0
;
add
->
hicon
=
NULL
;
MultiByteToWideChar
(
CP_ACP
,
0
,
"
WINE-
ADPCM"
,
-
1
,
MultiByteToWideChar
(
CP_ACP
,
0
,
"
Microsoft IMA
ADPCM"
,
-
1
,
add
->
szShortName
,
sizeof
(
add
->
szShortName
)
/
sizeof
(
WCHAR
)
);
MultiByteToWideChar
(
CP_ACP
,
0
,
"
Wine IMA ADPCM converter
"
,
-
1
,
MultiByteToWideChar
(
CP_ACP
,
0
,
"
Microsoft IMA ADPCM CODEC
"
,
-
1
,
add
->
szLongName
,
sizeof
(
add
->
szLongName
)
/
sizeof
(
WCHAR
)
);
MultiByteToWideChar
(
CP_ACP
,
0
,
"Brought to you by the Wine team..."
,
-
1
,
add
->
szCopyright
,
sizeof
(
add
->
szCopyright
)
/
sizeof
(
WCHAR
)
);
...
...
@@ -500,7 +500,7 @@ static LRESULT ADPCM_DriverDetails(PACMDRIVERDETAILSW add)
static
LRESULT
ADPCM_FormatTagDetails
(
PACMFORMATTAGDETAILSW
aftd
,
DWORD
dwQuery
)
{
static
const
WCHAR
szPcm
[]
=
{
'P'
,
'C'
,
'M'
,
0
};
static
const
WCHAR
szImaAdPcm
[]
=
{
'I'
,
'M'
,
'A'
,
' '
,
'A'
,
'
d
'
,
'P'
,
'C'
,
'M'
,
0
};
static
const
WCHAR
szImaAdPcm
[]
=
{
'I'
,
'M'
,
'A'
,
' '
,
'A'
,
'
D
'
,
'P'
,
'C'
,
'M'
,
0
};
switch
(
dwQuery
)
{
...
...
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