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
c7fb665a
Commit
c7fb665a
authored
Feb 27, 2009
by
Stefano Guidoni
Committed by
Alexandre Julliard
Mar 02, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imaadp32: block align the adpcm extra data.
parent
5c130c81
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
8 deletions
+24
-8
imaadp32.c
dlls/imaadp32.acm/imaadp32.c
+24
-8
No files found.
dlls/imaadp32.acm/imaadp32.c
View file @
c7fb665a
...
...
@@ -775,6 +775,8 @@ static LRESULT ADPCM_StreamClose(PACMDRVSTREAMINSTANCE adsi)
*/
static
LRESULT
ADPCM_StreamSize
(
const
ACMDRVSTREAMINSTANCE
*
adsi
,
PACMDRVSTREAMSIZE
adss
)
{
DWORD
nblocks
;
switch
(
adss
->
fdwSize
)
{
case
ACM_STREAMSIZEF_DESTINATION
:
...
...
@@ -782,14 +784,18 @@ static LRESULT ADPCM_StreamSize(const ACMDRVSTREAMINSTANCE *adsi, PACMDRVSTREAMS
if
(
adsi
->
pwfxSrc
->
wFormatTag
==
WAVE_FORMAT_PCM
&&
adsi
->
pwfxDst
->
wFormatTag
==
WAVE_FORMAT_IMA_ADPCM
)
{
/* don't take block overhead into account, doesn't matter too much */
adss
->
cbSrcLength
=
adss
->
cbDstLength
*
4
;
nblocks
=
adss
->
cbDstLength
/
adsi
->
pwfxDst
->
nBlockAlign
;
if
(
nblocks
==
0
)
return
ACMERR_NOTPOSSIBLE
;
adss
->
cbSrcLength
=
nblocks
*
adsi
->
pwfxSrc
->
nBlockAlign
*
((
IMAADPCMWAVEFORMAT
*
)
adsi
->
pwfxDst
)
->
wSamplesPerBlock
;
}
else
if
(
adsi
->
pwfxSrc
->
wFormatTag
==
WAVE_FORMAT_IMA_ADPCM
&&
adsi
->
pwfxDst
->
wFormatTag
==
WAVE_FORMAT_PCM
)
{
FIXME
(
"misses the block header overhead
\n
"
);
adss
->
cbSrcLength
=
256
+
adss
->
cbDstLength
/
4
;
nblocks
=
adss
->
cbDstLength
/
(
adsi
->
pwfxDst
->
nBlockAlign
*
((
IMAADPCMWAVEFORMAT
*
)
adsi
->
pwfxSrc
)
->
wSamplesPerBlock
);
if
(
nblocks
==
0
)
return
ACMERR_NOTPOSSIBLE
;
adss
->
cbSrcLength
=
nblocks
*
adsi
->
pwfxSrc
->
nBlockAlign
;
}
else
{
...
...
@@ -801,14 +807,24 @@ static LRESULT ADPCM_StreamSize(const ACMDRVSTREAMINSTANCE *adsi, PACMDRVSTREAMS
if
(
adsi
->
pwfxSrc
->
wFormatTag
==
WAVE_FORMAT_PCM
&&
adsi
->
pwfxDst
->
wFormatTag
==
WAVE_FORMAT_IMA_ADPCM
)
{
FIXME
(
"misses the block header overhead
\n
"
);
adss
->
cbDstLength
=
256
+
adss
->
cbSrcLength
/
4
;
nblocks
=
adss
->
cbSrcLength
/
(
adsi
->
pwfxSrc
->
nBlockAlign
*
((
IMAADPCMWAVEFORMAT
*
)
adsi
->
pwfxDst
)
->
wSamplesPerBlock
);
if
(
nblocks
==
0
)
return
ACMERR_NOTPOSSIBLE
;
if
(
adss
->
cbSrcLength
%
(
adsi
->
pwfxSrc
->
nBlockAlign
*
((
IMAADPCMWAVEFORMAT
*
)
adsi
->
pwfxDst
)
->
wSamplesPerBlock
))
/* Round block count up. */
nblocks
++
;
adss
->
cbDstLength
=
nblocks
*
adsi
->
pwfxDst
->
nBlockAlign
;
}
else
if
(
adsi
->
pwfxSrc
->
wFormatTag
==
WAVE_FORMAT_IMA_ADPCM
&&
adsi
->
pwfxDst
->
wFormatTag
==
WAVE_FORMAT_PCM
)
{
/* don't take block overhead into account, doesn't matter too much */
adss
->
cbDstLength
=
adss
->
cbSrcLength
*
4
;
nblocks
=
adss
->
cbSrcLength
/
adsi
->
pwfxSrc
->
nBlockAlign
;
if
(
nblocks
==
0
)
return
ACMERR_NOTPOSSIBLE
;
if
(
adss
->
cbSrcLength
%
adsi
->
pwfxSrc
->
nBlockAlign
)
/* Round block count up. */
nblocks
++
;
adss
->
cbDstLength
=
nblocks
*
adsi
->
pwfxDst
->
nBlockAlign
*
((
IMAADPCMWAVEFORMAT
*
)
adsi
->
pwfxSrc
)
->
wSamplesPerBlock
;
}
else
{
...
...
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