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
2fe86613
Commit
2fe86613
authored
Oct 05, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 05, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imaadp32.acm: Win64 printf format warning fixes.
parent
c6e27f8f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
Makefile.in
dlls/imaadp32.acm/Makefile.in
+0
-1
imaadp32.c
dlls/imaadp32.acm/imaadp32.c
+5
-5
No files found.
dlls/imaadp32.acm/Makefile.in
View file @
2fe86613
...
@@ -4,7 +4,6 @@ SRCDIR = @srcdir@
...
@@ -4,7 +4,6 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
imaadp32.acm
MODULE
=
imaadp32.acm
IMPORTS
=
winmm user32 kernel32
IMPORTS
=
winmm user32 kernel32
EXTRADEFS
=
-DWINE_NO_LONG_AS_INT
C_SRCS
=
imaadp32.c
C_SRCS
=
imaadp32.c
...
...
dlls/imaadp32.acm/imaadp32.c
View file @
2fe86613
...
@@ -523,7 +523,7 @@ static LRESULT ADPCM_FormatTagDetails(PACMFORMATTAGDETAILSW aftd, DWORD dwQuery)
...
@@ -523,7 +523,7 @@ static LRESULT ADPCM_FormatTagDetails(PACMFORMATTAGDETAILSW aftd, DWORD dwQuery)
}
}
break
;
break
;
default:
default:
WARN
(
"Unsupported query %08
l
x
\n
"
,
dwQuery
);
WARN
(
"Unsupported query %08x
\n
"
,
dwQuery
);
return
MMSYSERR_NOTSUPPORTED
;
return
MMSYSERR_NOTSUPPORTED
;
}
}
...
@@ -589,12 +589,12 @@ static LRESULT ADPCM_FormatDetails(PACMFORMATDETAILSW afd, DWORD dwQuery)
...
@@ -589,12 +589,12 @@ static LRESULT ADPCM_FormatDetails(PACMFORMATDETAILSW afd, DWORD dwQuery)
((
IMAADPCMWAVEFORMAT
*
)
afd
->
pwfx
)
->
wSamplesPerBlock
=
(
1024
-
4
*
afd
->
pwfx
->
nChannels
)
*
(
2
/
afd
->
pwfx
->
nChannels
)
+
1
;
((
IMAADPCMWAVEFORMAT
*
)
afd
->
pwfx
)
->
wSamplesPerBlock
=
(
1024
-
4
*
afd
->
pwfx
->
nChannels
)
*
(
2
/
afd
->
pwfx
->
nChannels
)
+
1
;
break
;
break
;
default:
default:
WARN
(
"Unsupported tag %08l
x
\n
"
,
afd
->
dwFormatTag
);
WARN
(
"Unsupported tag %08
x
\n
"
,
afd
->
dwFormatTag
);
return
MMSYSERR_INVALPARAM
;
return
MMSYSERR_INVALPARAM
;
}
}
break
;
break
;
default:
default:
WARN
(
"Unsupported query %08
l
x
\n
"
,
dwQuery
);
WARN
(
"Unsupported query %08x
\n
"
,
dwQuery
);
return
MMSYSERR_NOTSUPPORTED
;
return
MMSYSERR_NOTSUPPORTED
;
}
}
afd
->
fdwSupport
=
ACMDRIVERDETAILS_SUPPORTF_CODEC
;
afd
->
fdwSupport
=
ACMDRIVERDETAILS_SUPPORTF_CODEC
;
...
@@ -827,7 +827,7 @@ static LRESULT ADPCM_StreamSize(PACMDRVSTREAMINSTANCE adsi, PACMDRVSTREAMSIZE ad
...
@@ -827,7 +827,7 @@ static LRESULT ADPCM_StreamSize(PACMDRVSTREAMINSTANCE adsi, PACMDRVSTREAMSIZE ad
}
}
break
;
break
;
default:
default:
WARN
(
"Unsupported query %08
l
x
\n
"
,
adss
->
fdwSize
);
WARN
(
"Unsupported query %08x
\n
"
,
adss
->
fdwSize
);
return
MMSYSERR_NOTSUPPORTED
;
return
MMSYSERR_NOTSUPPORTED
;
}
}
return
MMSYSERR_NOERROR
;
return
MMSYSERR_NOERROR
;
...
@@ -848,7 +848,7 @@ static LRESULT ADPCM_StreamConvert(PACMDRVSTREAMINSTANCE adsi, PACMDRVSTREAMHEAD
...
@@ -848,7 +848,7 @@ static LRESULT ADPCM_StreamConvert(PACMDRVSTREAMINSTANCE adsi, PACMDRVSTREAMHEAD
ACM_STREAMCONVERTF_END
|
ACM_STREAMCONVERTF_END
|
ACM_STREAMCONVERTF_START
))
ACM_STREAMCONVERTF_START
))
{
{
FIXME
(
"Unsupported fdwConvert (%08
l
x), ignoring it
\n
"
,
adsh
->
fdwConvert
);
FIXME
(
"Unsupported fdwConvert (%08x), ignoring it
\n
"
,
adsh
->
fdwConvert
);
}
}
/* ACM_STREAMCONVERTF_BLOCKALIGN
/* ACM_STREAMCONVERTF_BLOCKALIGN
* currently all conversions are block aligned, so do nothing for this flag
* currently all conversions are block aligned, so do nothing for this flag
...
...
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