4 * Copyright (C) 2002 Eric Pouech
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
34 #include "wine/debug.h"
36 /* see http://www.pcisys.net/~melanson/codecs/adpcm.txt for the details */
38 WINE_DEFAULT_DEBUG_CHANNEL(adpcm
);
40 /***********************************************************************
43 static LRESULT
ADPCM_drvOpen(LPCSTR str
)
48 /***********************************************************************
51 static LRESULT
ADPCM_drvClose(DWORD_PTR dwDevID
)
56 typedef struct tagAcmAdpcmData
58 void (*convert
)(const ACMDRVSTREAMINSTANCE
*adsi
,
59 const unsigned char*, LPDWORD
, unsigned char*, LPDWORD
);
62 /* table to list all supported formats... those are the basic ones. this
63 * also helps given a unique index to each of the supported formats
72 static const Format PCM_Formats
[] =
74 {1, 8, 8000}, {2, 8, 8000}, {1, 16, 8000}, {2, 16, 8000},
75 {1, 8, 11025}, {2, 8, 11025}, {1, 16, 11025}, {2, 16, 11025},
76 {1, 8, 22050}, {2, 8, 22050}, {1, 16, 22050}, {2, 16, 22050},
77 {1, 8, 44100}, {2, 8, 44100}, {1, 16, 44100}, {2, 16, 44100},
80 static const Format ADPCM_Formats
[] =
82 {1, 4, 8000}, {2, 4, 8000}, {1, 4, 11025}, {2, 4, 11025},
83 {1, 4, 22050}, {2, 4, 22050}, {1, 4, 44100}, {2, 4, 44100},
86 #define NUM_PCM_FORMATS (sizeof(PCM_Formats) / sizeof(PCM_Formats[0]))
87 #define NUM_ADPCM_FORMATS (sizeof(ADPCM_Formats) / sizeof(ADPCM_Formats[0]))
89 static int MS_Delta
[] =
91 230, 230, 230, 230, 307, 409, 512, 614,
92 768, 614, 512, 409, 307, 230, 230, 230
96 static ADPCMCOEFSET MSADPCM_CoeffSet
[] =
98 {256, 0}, {512, -256}, {0, 0}, {192, 64}, {240, 0}, {460, -208}, {392, -232}
101 /***********************************************************************
102 * ADPCM_GetFormatIndex
104 static DWORD
ADPCM_GetFormatIndex(const WAVEFORMATEX
* wfx
)
109 switch (wfx
->wFormatTag
)
111 case WAVE_FORMAT_PCM
:
112 hi
= NUM_PCM_FORMATS
;
115 case WAVE_FORMAT_ADPCM
:
116 hi
= NUM_ADPCM_FORMATS
;
117 fmts
= ADPCM_Formats
;
123 for (i
= 0; i
< hi
; i
++)
125 if (wfx
->nChannels
== fmts
[i
].nChannels
&&
126 wfx
->nSamplesPerSec
== fmts
[i
].rate
&&
127 wfx
->wBitsPerSample
== fmts
[i
].nBits
)
131 switch (wfx
->wFormatTag
)
133 case WAVE_FORMAT_PCM
:
134 if(3 > wfx
->nChannels
&&
135 wfx
->nChannels
> 0 &&
136 wfx
->nAvgBytesPerSec
== 2 * wfx
->nSamplesPerSec
* wfx
->nChannels
&&
137 wfx
->nBlockAlign
== 2 * wfx
->nChannels
&&
138 wfx
->wBitsPerSample
== 16)
141 case WAVE_FORMAT_ADPCM
:
142 if(3 > wfx
->nChannels
&&
143 wfx
->nChannels
> 0 &&
144 wfx
->wBitsPerSample
== 4 &&
153 static void init_wfx_adpcm(ADPCMWAVEFORMAT
* awfx
)
155 register WAVEFORMATEX
* pwfx
= &awfx
->wfx
;
157 /* we assume wFormatTag, nChannels, nSamplesPerSec and wBitsPerSample
158 * have been initialized... */
160 if (pwfx
->wFormatTag
!= WAVE_FORMAT_ADPCM
) {FIXME("wrong FT\n"); return;}
161 if (ADPCM_GetFormatIndex(pwfx
) == 0xFFFFFFFF) {FIXME("wrong fmt\n"); return;}
163 switch (pwfx
->nSamplesPerSec
)
165 case 8000: pwfx
->nBlockAlign
= 256 * pwfx
->nChannels
; break;
166 case 11025: pwfx
->nBlockAlign
= 256 * pwfx
->nChannels
; break;
167 case 22050: pwfx
->nBlockAlign
= 512 * pwfx
->nChannels
; break;
168 case 44100: pwfx
->nBlockAlign
= 1024 * pwfx
->nChannels
; break;
171 pwfx
->cbSize
= 2 * sizeof(WORD
) + 7 * sizeof(ADPCMCOEFSET
);
172 /* 7 is the size of the block head (which contains two samples) */
174 awfx
->wSamplesPerBlock
= pwfx
->nBlockAlign
* 2 / pwfx
->nChannels
- 12;
175 pwfx
->nAvgBytesPerSec
= (pwfx
->nSamplesPerSec
* pwfx
->nBlockAlign
) / awfx
->wSamplesPerBlock
;
177 memcpy(awfx
->aCoef
, MSADPCM_CoeffSet
, 7 * sizeof(ADPCMCOEFSET
));
180 /***********************************************************************
183 * Read a 16 bit sample (correctly handles endianess)
185 static inline short R16(const unsigned char* src
)
187 return (short)((unsigned short)src
[0] | ((unsigned short)src
[1] << 8));
190 /***********************************************************************
193 * Write a 16 bit sample (correctly handles endianess)
195 static inline void W16(unsigned char* dst
, short s
)
201 static inline void clamp_sample(int* sample
)
203 if (*sample
< -32768) *sample
= -32768;
204 if (*sample
> 32767) *sample
= 32767;
207 static inline void process_nibble(unsigned nibble
, int* idelta
,
208 int* sample1
, int* sample2
,
209 const ADPCMCOEFSET
* coeff
)
214 /* nibble is in fact a signed 4 bit integer => propagate sign if needed */
215 snibble
= (nibble
& 0x08) ? (nibble
- 16) : nibble
;
216 sample
= ((*sample1
* coeff
->iCoef1
) + (*sample2
* coeff
->iCoef2
)) / 256 +
218 clamp_sample(&sample
);
222 *idelta
= ((MS_Delta
[nibble
] * *idelta
) / 256);
223 if (*idelta
< 16) *idelta
= 16;
226 static void cvtSSms16K(const ACMDRVSTREAMINSTANCE
*adsi
,
227 const unsigned char* src
, LPDWORD nsrc
,
228 unsigned char* dst
, LPDWORD ndst
)
230 int ideltaL
, ideltaR
;
231 int sample1L
, sample2L
;
232 int sample1R
, sample2R
;
233 ADPCMCOEFSET coeffL
, coeffR
;
235 int nsamp_blk
= ((ADPCMWAVEFORMAT
*)adsi
->pwfxSrc
)->wSamplesPerBlock
;
236 DWORD nblock
= min(*nsrc
/ adsi
->pwfxSrc
->nBlockAlign
,
237 *ndst
/ (nsamp_blk
* 2 * 2));
239 *nsrc
= nblock
* adsi
->pwfxSrc
->nBlockAlign
;
240 *ndst
= nblock
* nsamp_blk
* 2 * 2;
242 nsamp_blk
-= 2; /* see below for samples from block head */
243 for (; nblock
> 0; nblock
--)
245 const unsigned char* in_src
= src
;
248 coeffL
= MSADPCM_CoeffSet
[*src
++];
250 coeffR
= MSADPCM_CoeffSet
[*src
++];
252 ideltaL
= R16(src
); src
+= 2;
253 ideltaR
= R16(src
); src
+= 2;
254 sample1L
= R16(src
); src
+= 2;
255 sample1R
= R16(src
); src
+= 2;
256 sample2L
= R16(src
); src
+= 2;
257 sample2R
= R16(src
); src
+= 2;
259 /* store samples from block head */
260 W16(dst
, sample2L
); dst
+= 2;
261 W16(dst
, sample2R
); dst
+= 2;
262 W16(dst
, sample1L
); dst
+= 2;
263 W16(dst
, sample1R
); dst
+= 2;
265 for (nsamp
= nsamp_blk
; nsamp
> 0; nsamp
--)
267 process_nibble(*src
>> 4, &ideltaL
, &sample1L
, &sample2L
, &coeffL
);
268 W16(dst
, sample1L
); dst
+= 2;
269 process_nibble(*src
++ & 0x0F, &ideltaR
, &sample1R
, &sample2R
, &coeffR
);
270 W16(dst
, sample1R
); dst
+= 2;
272 src
= in_src
+ adsi
->pwfxSrc
->nBlockAlign
;
276 static void cvtMMms16K(const ACMDRVSTREAMINSTANCE
*adsi
,
277 const unsigned char* src
, LPDWORD nsrc
,
278 unsigned char* dst
, LPDWORD ndst
)
281 int sample1
, sample2
;
284 int nsamp_blk
= ((ADPCMWAVEFORMAT
*)adsi
->pwfxSrc
)->wSamplesPerBlock
;
285 DWORD nblock
= min(*nsrc
/ adsi
->pwfxSrc
->nBlockAlign
,
286 *ndst
/ (nsamp_blk
* 2));
288 *nsrc
= nblock
* adsi
->pwfxSrc
->nBlockAlign
;
289 *ndst
= nblock
* nsamp_blk
* 2;
291 nsamp_blk
-= 2; /* see below for samples from block head */
292 for (; nblock
> 0; nblock
--)
294 const unsigned char* in_src
= src
;
297 coeff
= MSADPCM_CoeffSet
[*src
++];
299 idelta
= R16(src
); src
+= 2;
300 sample1
= R16(src
); src
+= 2;
301 sample2
= R16(src
); src
+= 2;
303 /* store samples from block head */
304 W16(dst
, sample2
); dst
+= 2;
305 W16(dst
, sample1
); dst
+= 2;
307 for (nsamp
= nsamp_blk
; nsamp
> 0; nsamp
-= 2)
309 process_nibble(*src
>> 4, &idelta
, &sample1
, &sample2
, &coeff
);
310 W16(dst
, sample1
); dst
+= 2;
311 process_nibble(*src
++ & 0x0F, &idelta
, &sample1
, &sample2
, &coeff
);
312 W16(dst
, sample1
); dst
+= 2;
314 src
= in_src
+ adsi
->pwfxSrc
->nBlockAlign
;
319 static void cvtSS16msK(PACMDRVSTREAMINSTANCE adsi
,
320 const unsigned char* src
, LPDWORD nsrc
,
321 unsigned char* dst
, LPDWORD ndst
)
325 static void cvtMM16msK(PACMDRVSTREAMINSTANCE adsi
,
326 const unsigned char* src
, LPDWORD nsrc
,
327 unsigned char* dst
, LPDWORD ndst
)
332 /***********************************************************************
333 * ADPCM_DriverDetails
336 static LRESULT
ADPCM_DriverDetails(PACMDRIVERDETAILSW add
)
338 add
->fccType
= ACMDRIVERDETAILS_FCCTYPE_AUDIOCODEC
;
339 add
->fccComp
= ACMDRIVERDETAILS_FCCCOMP_UNDEFINED
;
342 add
->vdwACM
= 0x01000000;
343 add
->vdwDriver
= 0x01000000;
344 add
->fdwSupport
= ACMDRIVERDETAILS_SUPPORTF_CODEC
;
345 add
->cFormatTags
= 2; /* PCM, MS ADPCM */
346 add
->cFilterTags
= 0;
348 MultiByteToWideChar( CP_ACP
, 0, "MS-ADPCM", -1,
349 add
->szShortName
, sizeof(add
->szShortName
)/sizeof(WCHAR
) );
350 MultiByteToWideChar( CP_ACP
, 0, "Wine MS ADPCM converter", -1,
351 add
->szLongName
, sizeof(add
->szLongName
)/sizeof(WCHAR
) );
352 MultiByteToWideChar( CP_ACP
, 0, "Brought to you by the Wine team...", -1,
353 add
->szCopyright
, sizeof(add
->szCopyright
)/sizeof(WCHAR
) );
354 MultiByteToWideChar( CP_ACP
, 0, "Refer to LICENSE file", -1,
355 add
->szLicensing
, sizeof(add
->szLicensing
)/sizeof(WCHAR
) );
356 add
->szFeatures
[0] = 0;
358 return MMSYSERR_NOERROR
;
361 /***********************************************************************
362 * ADPCM_FormatTagDetails
365 static LRESULT
ADPCM_FormatTagDetails(PACMFORMATTAGDETAILSW aftd
, DWORD dwQuery
)
367 static const WCHAR szPcm
[]={'P','C','M',0};
368 static const WCHAR szMsAdPcm
[]={'M','i','c','r','o','s','o','f','t',' ','A','D','P','C','M',0};
372 case ACM_FORMATTAGDETAILSF_INDEX
:
373 if (aftd
->dwFormatTagIndex
>= 2) return ACMERR_NOTPOSSIBLE
;
375 case ACM_FORMATTAGDETAILSF_LARGESTSIZE
:
376 if (aftd
->dwFormatTag
== WAVE_FORMAT_UNKNOWN
)
378 aftd
->dwFormatTagIndex
= 1; /* WAVE_FORMAT_ADPCM is bigger than PCM */
382 case ACM_FORMATTAGDETAILSF_FORMATTAG
:
383 switch (aftd
->dwFormatTag
)
385 case WAVE_FORMAT_PCM
: aftd
->dwFormatTagIndex
= 0; break;
386 case WAVE_FORMAT_ADPCM
: aftd
->dwFormatTagIndex
= 1; break;
387 default: return ACMERR_NOTPOSSIBLE
;
391 WARN("Unsupported query %08x\n", dwQuery
);
392 return MMSYSERR_NOTSUPPORTED
;
395 aftd
->fdwSupport
= ACMDRIVERDETAILS_SUPPORTF_CODEC
;
396 switch (aftd
->dwFormatTagIndex
)
399 aftd
->dwFormatTag
= WAVE_FORMAT_PCM
;
400 aftd
->cbFormatSize
= sizeof(PCMWAVEFORMAT
);
401 aftd
->cStandardFormats
= NUM_PCM_FORMATS
;
402 lstrcpyW(aftd
->szFormatTag
, szPcm
);
405 aftd
->dwFormatTag
= WAVE_FORMAT_ADPCM
;
406 aftd
->cbFormatSize
= sizeof(ADPCMWAVEFORMAT
) + (7 - 1) * sizeof(ADPCMCOEFSET
);
407 aftd
->cStandardFormats
= NUM_ADPCM_FORMATS
;
408 lstrcpyW(aftd
->szFormatTag
, szMsAdPcm
);
411 return MMSYSERR_NOERROR
;
414 /***********************************************************************
415 * ADPCM_FormatDetails
418 static LRESULT
ADPCM_FormatDetails(PACMFORMATDETAILSW afd
, DWORD dwQuery
)
422 case ACM_FORMATDETAILSF_FORMAT
:
423 if (ADPCM_GetFormatIndex(afd
->pwfx
) == 0xFFFFFFFF) return ACMERR_NOTPOSSIBLE
;
425 case ACM_FORMATDETAILSF_INDEX
:
426 afd
->pwfx
->wFormatTag
= afd
->dwFormatTag
;
427 switch (afd
->dwFormatTag
)
429 case WAVE_FORMAT_PCM
:
430 if (afd
->dwFormatIndex
>= NUM_PCM_FORMATS
) return ACMERR_NOTPOSSIBLE
;
431 afd
->pwfx
->nChannels
= PCM_Formats
[afd
->dwFormatIndex
].nChannels
;
432 afd
->pwfx
->nSamplesPerSec
= PCM_Formats
[afd
->dwFormatIndex
].rate
;
433 afd
->pwfx
->wBitsPerSample
= PCM_Formats
[afd
->dwFormatIndex
].nBits
;
434 /* native MSACM uses a PCMWAVEFORMAT structure, so cbSize is not accessible
435 * afd->pwfx->cbSize = 0;
437 afd
->pwfx
->nBlockAlign
=
438 (afd
->pwfx
->nChannels
* afd
->pwfx
->wBitsPerSample
) / 8;
439 afd
->pwfx
->nAvgBytesPerSec
=
440 afd
->pwfx
->nSamplesPerSec
* afd
->pwfx
->nBlockAlign
;
442 case WAVE_FORMAT_ADPCM
:
443 if (afd
->dwFormatIndex
>= NUM_ADPCM_FORMATS
) return ACMERR_NOTPOSSIBLE
;
444 if (afd
->cbwfx
< sizeof(ADPCMWAVEFORMAT
) + (7 - 1) * sizeof(ADPCMCOEFSET
))
445 return ACMERR_NOTPOSSIBLE
;
446 afd
->pwfx
->nChannels
= ADPCM_Formats
[afd
->dwFormatIndex
].nChannels
;
447 afd
->pwfx
->nSamplesPerSec
= ADPCM_Formats
[afd
->dwFormatIndex
].rate
;
448 afd
->pwfx
->wBitsPerSample
= ADPCM_Formats
[afd
->dwFormatIndex
].nBits
;
449 init_wfx_adpcm((ADPCMWAVEFORMAT
*)afd
->pwfx
);
452 WARN("Unsupported tag %08x\n", afd
->dwFormatTag
);
453 return MMSYSERR_INVALPARAM
;
457 WARN("Unsupported query %08x\n", dwQuery
);
458 return MMSYSERR_NOTSUPPORTED
;
460 afd
->fdwSupport
= ACMDRIVERDETAILS_SUPPORTF_CODEC
;
461 afd
->szFormat
[0] = 0; /* let MSACM format this for us... */
463 return MMSYSERR_NOERROR
;
466 /***********************************************************************
467 * ADPCM_FormatSuggest
470 static LRESULT
ADPCM_FormatSuggest(PACMDRVFORMATSUGGEST adfs
)
473 if (adfs
->cbwfxSrc
< sizeof(PCMWAVEFORMAT
) ||
474 adfs
->cbwfxDst
< sizeof(PCMWAVEFORMAT
) ||
475 adfs
->pwfxSrc
->wFormatTag
== adfs
->pwfxDst
->wFormatTag
||
476 ADPCM_GetFormatIndex(adfs
->pwfxSrc
) == 0xFFFFFFFF) return ACMERR_NOTPOSSIBLE
;
477 /* FIXME: should do those tests against the real size (according to format tag */
479 /* If no suggestion for destination, then copy source value */
480 if (!(adfs
->fdwSuggest
& ACM_FORMATSUGGESTF_NCHANNELS
))
481 adfs
->pwfxDst
->nChannels
= adfs
->pwfxSrc
->nChannels
;
482 if (!(adfs
->fdwSuggest
& ACM_FORMATSUGGESTF_NSAMPLESPERSEC
))
483 adfs
->pwfxDst
->nSamplesPerSec
= adfs
->pwfxSrc
->nSamplesPerSec
;
485 if (!(adfs
->fdwSuggest
& ACM_FORMATSUGGESTF_WBITSPERSAMPLE
))
487 if (adfs
->pwfxSrc
->wFormatTag
== WAVE_FORMAT_PCM
)
488 adfs
->pwfxDst
->wBitsPerSample
= 4;
490 adfs
->pwfxDst
->wBitsPerSample
= 16;
492 if (!(adfs
->fdwSuggest
& ACM_FORMATSUGGESTF_WFORMATTAG
))
494 if (adfs
->pwfxSrc
->wFormatTag
== WAVE_FORMAT_PCM
)
495 adfs
->pwfxDst
->wFormatTag
= WAVE_FORMAT_ADPCM
;
497 adfs
->pwfxDst
->wFormatTag
= WAVE_FORMAT_PCM
;
500 /* recompute other values */
501 switch (adfs
->pwfxDst
->wFormatTag
)
503 case WAVE_FORMAT_PCM
:
504 adfs
->pwfxDst
->nBlockAlign
= (adfs
->pwfxDst
->nChannels
* adfs
->pwfxDst
->wBitsPerSample
) / 8;
505 adfs
->pwfxDst
->nAvgBytesPerSec
= adfs
->pwfxDst
->nSamplesPerSec
* adfs
->pwfxDst
->nBlockAlign
;
506 /* check if result is ok */
507 if (ADPCM_GetFormatIndex(adfs
->pwfxDst
) == 0xFFFFFFFF) return ACMERR_NOTPOSSIBLE
;
509 case WAVE_FORMAT_ADPCM
:
510 init_wfx_adpcm((ADPCMWAVEFORMAT
*)adfs
->pwfxDst
);
511 /* check if result is ok */
512 if (ADPCM_GetFormatIndex(adfs
->pwfxDst
) == 0xFFFFFFFF) return ACMERR_NOTPOSSIBLE
;
515 return ACMERR_NOTPOSSIBLE
;
518 return MMSYSERR_NOERROR
;
521 /***********************************************************************
525 static void ADPCM_Reset(PACMDRVSTREAMINSTANCE adsi
, AcmAdpcmData
* aad
)
529 /***********************************************************************
533 static LRESULT
ADPCM_StreamOpen(PACMDRVSTREAMINSTANCE adsi
)
537 assert(!(adsi
->fdwOpen
& ACM_STREAMOPENF_ASYNC
));
539 if (ADPCM_GetFormatIndex(adsi
->pwfxSrc
) == 0xFFFFFFFF ||
540 ADPCM_GetFormatIndex(adsi
->pwfxDst
) == 0xFFFFFFFF)
541 return ACMERR_NOTPOSSIBLE
;
543 aad
= HeapAlloc(GetProcessHeap(), 0, sizeof(AcmAdpcmData
));
544 if (aad
== 0) return MMSYSERR_NOMEM
;
546 adsi
->dwDriver
= (DWORD_PTR
)aad
;
548 if (adsi
->pwfxSrc
->wFormatTag
== WAVE_FORMAT_PCM
&&
549 adsi
->pwfxDst
->wFormatTag
== WAVE_FORMAT_PCM
)
553 else if (adsi
->pwfxSrc
->wFormatTag
== WAVE_FORMAT_ADPCM
&&
554 adsi
->pwfxDst
->wFormatTag
== WAVE_FORMAT_PCM
)
556 /* resampling or mono <=> stereo not available
557 * ADPCM algo only define 16 bit per sample output
559 if (adsi
->pwfxSrc
->nSamplesPerSec
!= adsi
->pwfxDst
->nSamplesPerSec
||
560 adsi
->pwfxSrc
->nChannels
!= adsi
->pwfxDst
->nChannels
||
561 adsi
->pwfxDst
->wBitsPerSample
!= 16)
566 unsigned int nspb
= ((IMAADPCMWAVEFORMAT
*)adsi
->pwfxSrc
)->wSamplesPerBlock
;
567 FIXME("spb=%u\n", nspb
);
569 /* we check that in a block, after the header, samples are present on
570 * 4-sample packet pattern
571 * we also check that the block alignment is bigger than the expected size
573 if (((nspb
- 1) & 3) != 0) goto theEnd
;
574 if ((((nspb
- 1) / 2) + 4) * adsi
->pwfxSrc
->nChannels
< adsi
->pwfxSrc
->nBlockAlign
)
579 /* adpcm decoding... */
580 if (adsi
->pwfxDst
->wBitsPerSample
== 16 && adsi
->pwfxDst
->nChannels
== 2)
581 aad
->convert
= cvtSSms16K
;
582 if (adsi
->pwfxDst
->wBitsPerSample
== 16 && adsi
->pwfxDst
->nChannels
== 1)
583 aad
->convert
= cvtMMms16K
;
585 else if (adsi
->pwfxSrc
->wFormatTag
== WAVE_FORMAT_PCM
&&
586 adsi
->pwfxDst
->wFormatTag
== WAVE_FORMAT_ADPCM
)
588 if (adsi
->pwfxSrc
->nSamplesPerSec
!= adsi
->pwfxDst
->nSamplesPerSec
||
589 adsi
->pwfxSrc
->nChannels
!= adsi
->pwfxDst
->nChannels
||
590 adsi
->pwfxSrc
->wBitsPerSample
!= 16)
593 nspb
= ((IMAADPCMWAVEFORMAT
*)adsi
->pwfxDst
)->wSamplesPerBlock
;
594 FIXME("spb=%u\n", nspb
);
596 /* we check that in a block, after the header, samples are present on
597 * 4-sample packet pattern
598 * we also check that the block alignment is bigger than the expected size
600 if (((nspb
- 1) & 3) != 0) goto theEnd
;
601 if ((((nspb
- 1) / 2) + 4) * adsi
->pwfxDst
->nChannels
< adsi
->pwfxDst
->nBlockAlign
)
605 /* adpcm coding... */
606 if (adsi
->pwfxSrc
->wBitsPerSample
== 16 && adsi
->pwfxSrc
->nChannels
== 2)
607 aad
->convert
= cvtSS16msK
;
608 if (adsi
->pwfxSrc
->wBitsPerSample
== 16 && adsi
->pwfxSrc
->nChannels
== 1)
609 aad
->convert
= cvtMM16msK
;
611 FIXME("We don't support encoding yet\n");
615 ADPCM_Reset(adsi
, aad
);
617 return MMSYSERR_NOERROR
;
620 HeapFree(GetProcessHeap(), 0, aad
);
622 return MMSYSERR_NOTSUPPORTED
;
625 /***********************************************************************
629 static LRESULT
ADPCM_StreamClose(PACMDRVSTREAMINSTANCE adsi
)
631 HeapFree(GetProcessHeap(), 0, (void*)adsi
->dwDriver
);
632 return MMSYSERR_NOERROR
;
635 /***********************************************************************
639 static LRESULT
ADPCM_StreamSize(const ACMDRVSTREAMINSTANCE
*adsi
, PACMDRVSTREAMSIZE adss
)
642 WORD wSamplesPerBlock
;
643 /* wSamplesPerBlock formula comes from MSDN ADPCMWAVEFORMAT page.*/
644 switch (adss
->fdwSize
)
646 case ACM_STREAMSIZEF_DESTINATION
:
647 /* cbDstLength => cbSrcLength */
648 if (adsi
->pwfxSrc
->wFormatTag
== WAVE_FORMAT_PCM
&&
649 adsi
->pwfxDst
->wFormatTag
== WAVE_FORMAT_ADPCM
)
651 wSamplesPerBlock
= adsi
->pwfxDst
->nBlockAlign
* 2 / adsi
->pwfxDst
->nChannels
- 12;
652 nblocks
= adss
->cbDstLength
/ adsi
->pwfxDst
->nBlockAlign
;
654 return ACMERR_NOTPOSSIBLE
;
655 adss
->cbSrcLength
= nblocks
* adsi
->pwfxSrc
->nBlockAlign
* wSamplesPerBlock
;
657 else if (adsi
->pwfxSrc
->wFormatTag
== WAVE_FORMAT_ADPCM
&&
658 adsi
->pwfxDst
->wFormatTag
== WAVE_FORMAT_PCM
)
660 wSamplesPerBlock
= adsi
->pwfxSrc
->nBlockAlign
* 2 / adsi
->pwfxSrc
->nChannels
- 12;
661 nblocks
= adss
->cbDstLength
/ (adsi
->pwfxDst
->nBlockAlign
* wSamplesPerBlock
);
663 return ACMERR_NOTPOSSIBLE
;
664 adss
->cbSrcLength
= nblocks
* adsi
->pwfxSrc
->nBlockAlign
;
668 return MMSYSERR_NOTSUPPORTED
;
671 case ACM_STREAMSIZEF_SOURCE
:
672 /* cbSrcLength => cbDstLength */
673 if (adsi
->pwfxSrc
->wFormatTag
== WAVE_FORMAT_PCM
&&
674 adsi
->pwfxDst
->wFormatTag
== WAVE_FORMAT_ADPCM
)
676 wSamplesPerBlock
= adsi
->pwfxDst
->nBlockAlign
* 2 / adsi
->pwfxDst
->nChannels
- 12;
677 nblocks
= adss
->cbSrcLength
/ (adsi
->pwfxSrc
->nBlockAlign
* wSamplesPerBlock
);
679 return ACMERR_NOTPOSSIBLE
;
680 if (adss
->cbSrcLength
% (adsi
->pwfxSrc
->nBlockAlign
* wSamplesPerBlock
))
681 /* Round block count up. */
683 adss
->cbDstLength
= nblocks
* adsi
->pwfxDst
->nBlockAlign
;
685 else if (adsi
->pwfxSrc
->wFormatTag
== WAVE_FORMAT_ADPCM
&&
686 adsi
->pwfxDst
->wFormatTag
== WAVE_FORMAT_PCM
)
688 wSamplesPerBlock
= adsi
->pwfxSrc
->nBlockAlign
* 2 / adsi
->pwfxSrc
->nChannels
- 12;
689 nblocks
= adss
->cbSrcLength
/ adsi
->pwfxSrc
->nBlockAlign
;
691 return ACMERR_NOTPOSSIBLE
;
692 if (adss
->cbSrcLength
% adsi
->pwfxSrc
->nBlockAlign
)
693 /* Round block count up. */
695 adss
->cbDstLength
= nblocks
* adsi
->pwfxDst
->nBlockAlign
* wSamplesPerBlock
;
699 return MMSYSERR_NOTSUPPORTED
;
703 WARN("Unsupported query %08x\n", adss
->fdwSize
);
704 return MMSYSERR_NOTSUPPORTED
;
706 return MMSYSERR_NOERROR
;
709 /***********************************************************************
710 * ADPCM_StreamConvert
713 static LRESULT
ADPCM_StreamConvert(PACMDRVSTREAMINSTANCE adsi
, PACMDRVSTREAMHEADER adsh
)
715 AcmAdpcmData
* aad
= (AcmAdpcmData
*)adsi
->dwDriver
;
716 DWORD nsrc
= adsh
->cbSrcLength
;
717 DWORD ndst
= adsh
->cbDstLength
;
719 if (adsh
->fdwConvert
&
720 ~(ACM_STREAMCONVERTF_BLOCKALIGN
|
721 ACM_STREAMCONVERTF_END
|
722 ACM_STREAMCONVERTF_START
))
724 FIXME("Unsupported fdwConvert (%08x), ignoring it\n", adsh
->fdwConvert
);
726 /* ACM_STREAMCONVERTF_BLOCKALIGN
727 * currently all conversions are block aligned, so do nothing for this flag
728 * ACM_STREAMCONVERTF_END
729 * no pending data, so do nothing for this flag
731 if ((adsh
->fdwConvert
& ACM_STREAMCONVERTF_START
))
733 ADPCM_Reset(adsi
, aad
);
736 aad
->convert(adsi
, adsh
->pbSrc
, &nsrc
, adsh
->pbDst
, &ndst
);
737 adsh
->cbSrcLengthUsed
= nsrc
;
738 adsh
->cbDstLengthUsed
= ndst
;
740 return MMSYSERR_NOERROR
;
743 /**************************************************************************
744 * ADPCM_DriverProc [exported]
746 LRESULT CALLBACK
ADPCM_DriverProc(DWORD_PTR dwDevID
, HDRVR hDriv
, UINT wMsg
,
747 LPARAM dwParam1
, LPARAM dwParam2
)
749 TRACE("(%08lx %p %04x %08lx %08lx);\n",
750 dwDevID
, hDriv
, wMsg
, dwParam1
, dwParam2
);
754 case DRV_LOAD
: return 1;
755 case DRV_FREE
: return 1;
756 case DRV_OPEN
: return ADPCM_drvOpen((LPSTR
)dwParam1
);
757 case DRV_CLOSE
: return ADPCM_drvClose(dwDevID
);
758 case DRV_ENABLE
: return 1;
759 case DRV_DISABLE
: return 1;
760 case DRV_QUERYCONFIGURE
: return 1;
761 case DRV_CONFIGURE
: MessageBoxA(0, "MSACM MS ADPCM filter !", "Wine Driver", MB_OK
); return 1;
762 case DRV_INSTALL
: return DRVCNF_RESTART
;
763 case DRV_REMOVE
: return DRVCNF_RESTART
;
765 case ACMDM_DRIVER_NOTIFY
:
766 /* no caching from other ACM drivers is done so far */
767 return MMSYSERR_NOERROR
;
769 case ACMDM_DRIVER_DETAILS
:
770 return ADPCM_DriverDetails((PACMDRIVERDETAILSW
)dwParam1
);
772 case ACMDM_FORMATTAG_DETAILS
:
773 return ADPCM_FormatTagDetails((PACMFORMATTAGDETAILSW
)dwParam1
, dwParam2
);
775 case ACMDM_FORMAT_DETAILS
:
776 return ADPCM_FormatDetails((PACMFORMATDETAILSW
)dwParam1
, dwParam2
);
778 case ACMDM_FORMAT_SUGGEST
:
779 return ADPCM_FormatSuggest((PACMDRVFORMATSUGGEST
)dwParam1
);
781 case ACMDM_STREAM_OPEN
:
782 return ADPCM_StreamOpen((PACMDRVSTREAMINSTANCE
)dwParam1
);
784 case ACMDM_STREAM_CLOSE
:
785 return ADPCM_StreamClose((PACMDRVSTREAMINSTANCE
)dwParam1
);
787 case ACMDM_STREAM_SIZE
:
788 return ADPCM_StreamSize((PACMDRVSTREAMINSTANCE
)dwParam1
, (PACMDRVSTREAMSIZE
)dwParam2
);
790 case ACMDM_STREAM_CONVERT
:
791 return ADPCM_StreamConvert((PACMDRVSTREAMINSTANCE
)dwParam1
, (PACMDRVSTREAMHEADER
)dwParam2
);
793 case ACMDM_HARDWARE_WAVE_CAPS_INPUT
:
794 case ACMDM_HARDWARE_WAVE_CAPS_OUTPUT
:
795 /* this converter is not a hardware driver */
796 case ACMDM_FILTERTAG_DETAILS
:
797 case ACMDM_FILTER_DETAILS
:
798 /* this converter is not a filter */
799 case ACMDM_STREAM_RESET
:
800 /* only needed for asynchronous driver... we aren't, so just say it */
801 return MMSYSERR_NOTSUPPORTED
;
802 case ACMDM_STREAM_PREPARE
:
803 case ACMDM_STREAM_UNPREPARE
:
804 /* nothing special to do here... so don't do anything */
805 return MMSYSERR_NOERROR
;
808 return DefDriverProc(dwDevID
, hDriv
, wMsg
, dwParam1
, dwParam2
);