rpcrt4: Implement RpcServerRegisterAuthInfoA/W.
[wine/multimedia.git] / dlls / winemp3.acm / mpegl3.c
blob2d291cf68bb5a45a228805f611a46b3cb58dd207
1 /*
2 * MPEG Layer 3 handling
4 * Copyright (C) 2002 Eric Pouech
5 * Copyright (C) 2009 CodeWeavers, Aric Stewart
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "config.h"
24 #include "wine/port.h"
26 #include <assert.h>
27 #include <stdarg.h>
28 #include <string.h>
29 #include "windef.h"
30 #include "winbase.h"
31 #include "wingdi.h"
32 #include "winuser.h"
33 #include "winnls.h"
34 #include "mmsystem.h"
35 #include "mmreg.h"
36 #include "msacm.h"
37 #include "msacmdrv.h"
39 #ifdef HAVE_MPG123_H
40 #include <mpg123.h>
41 #endif
43 #include "wine/debug.h"
45 WINE_DEFAULT_DEBUG_CHANNEL(mpeg3);
47 /***********************************************************************
48 * MPEG3_drvOpen
50 static LRESULT MPEG3_drvOpen(LPCSTR str)
52 mpg123_init();
53 return 1;
56 /***********************************************************************
57 * MPEG3_drvClose
59 static LRESULT MPEG3_drvClose(DWORD_PTR dwDevID)
61 mpg123_exit();
62 return 1;
65 typedef struct tagAcmMpeg3Data
67 void (*convert)(PACMDRVSTREAMINSTANCE adsi,
68 const unsigned char*, LPDWORD, unsigned char*, LPDWORD);
69 mpg123_handle *mh;
70 } AcmMpeg3Data;
72 /* table to list all supported formats... those are the basic ones. this
73 * also helps given a unique index to each of the supported formats
75 typedef struct
77 int nChannels;
78 int nBits;
79 int rate;
80 } Format;
82 static const Format PCM_Formats[] =
84 {1, 8, 8000}, {2, 8, 8000}, {1, 16, 8000}, {2, 16, 8000},
85 {1, 8, 11025}, {2, 8, 11025}, {1, 16, 11025}, {2, 16, 11025},
86 {1, 8, 12000}, {2, 8, 12000}, {1, 16, 12000}, {2, 16, 12000},
87 {1, 8, 16000}, {2, 8, 16000}, {1, 16, 16000}, {2, 16, 16000},
88 {1, 8, 22050}, {2, 8, 22050}, {1, 16, 22050}, {2, 16, 22050},
89 {1, 8, 24000}, {2, 8, 24000}, {1, 16, 24000}, {2, 16, 24000},
90 {1, 8, 32000}, {2, 8, 32000}, {1, 16, 32000}, {2, 16, 32000},
91 {1, 8, 44100}, {2, 8, 44100}, {1, 16, 44100}, {2, 16, 44100},
92 {1, 8, 48000}, {2, 8, 48000}, {1, 16, 48000}, {2, 16, 48000}
95 static const Format MPEG3_Formats[] =
97 {1, 0, 8000}, {2, 0, 8000},
98 {1, 0, 11025}, {2, 0, 11025},
99 {1, 0, 12000}, {2, 0, 12000},
100 {1, 0, 16000}, {2, 0, 16000},
101 {1, 0, 22050}, {2, 0, 22050},
102 {1, 0, 24000}, {2, 0, 24000},
103 {1, 0, 32000}, {2, 0, 32000},
104 {1, 0, 44100}, {2, 0, 44100},
105 {1, 0, 48000}, {2, 0, 48000}
108 #define NUM_PCM_FORMATS (sizeof(PCM_Formats) / sizeof(PCM_Formats[0]))
109 #define NUM_MPEG3_FORMATS (sizeof(MPEG3_Formats) / sizeof(MPEG3_Formats[0]))
111 /***********************************************************************
112 * MPEG3_GetFormatIndex
114 static DWORD MPEG3_GetFormatIndex(LPWAVEFORMATEX wfx)
116 int i, hi;
117 const Format *fmts;
119 switch (wfx->wFormatTag)
121 case WAVE_FORMAT_PCM:
122 hi = NUM_PCM_FORMATS;
123 fmts = PCM_Formats;
124 break;
125 case WAVE_FORMAT_MPEGLAYER3:
126 hi = NUM_MPEG3_FORMATS;
127 fmts = MPEG3_Formats;
128 break;
129 default:
130 return 0xFFFFFFFF;
133 for (i = 0; i < hi; i++)
135 if (wfx->nChannels == fmts[i].nChannels &&
136 wfx->nSamplesPerSec == fmts[i].rate &&
137 (wfx->wBitsPerSample == fmts[i].nBits || !fmts[i].nBits))
138 return i;
141 return 0xFFFFFFFF;
144 static void mp3_horse(PACMDRVSTREAMINSTANCE adsi,
145 const unsigned char* src, LPDWORD nsrc,
146 unsigned char* dst, LPDWORD ndst)
148 AcmMpeg3Data* amd = (AcmMpeg3Data*)adsi->dwDriver;
149 int ret;
150 size_t size;
151 DWORD dpos = 0;
154 if (*nsrc > 0)
156 ret = mpg123_feed(amd->mh, src, *nsrc);
157 if (ret != MPG123_OK)
159 ERR("Error feeding data\n");
160 *ndst = *nsrc = 0;
161 return;
165 do {
166 size = 0;
167 ret = mpg123_read(amd->mh, dst + dpos, *ndst - dpos, &size);
168 if (ret == MPG123_ERR)
170 FIXME("Error occurred during decoding!\n");
171 *ndst = *nsrc = 0;
172 return;
175 if (ret == MPG123_NEW_FORMAT)
177 if TRACE_ON(mpeg3)
179 long rate;
180 int channels, enc;
181 mpg123_getformat(amd->mh, &rate, &channels, &enc);
182 TRACE("New format: %li Hz, %i channels, encoding value %i\n", rate, channels, enc);
185 dpos += size;
186 } while (ret == MPG123_OK);
187 *ndst = dpos;
190 /***********************************************************************
191 * MPEG3_DriverDetails
194 static LRESULT MPEG3_DriverDetails(PACMDRIVERDETAILSW add)
196 add->fccType = ACMDRIVERDETAILS_FCCTYPE_AUDIOCODEC;
197 add->fccComp = ACMDRIVERDETAILS_FCCCOMP_UNDEFINED;
198 add->wMid = 0xFF;
199 add->wPid = 0x00;
200 add->vdwACM = 0x01000000;
201 add->vdwDriver = 0x01000000;
202 add->fdwSupport = ACMDRIVERDETAILS_SUPPORTF_CODEC;
203 add->cFormatTags = 2; /* PCM, MPEG3 */
204 add->cFilterTags = 0;
205 add->hicon = NULL;
206 MultiByteToWideChar( CP_ACP, 0, "WINE-MPEG3", -1,
207 add->szShortName, sizeof(add->szShortName)/sizeof(WCHAR) );
208 MultiByteToWideChar( CP_ACP, 0, "Wine MPEG3 decoder", -1,
209 add->szLongName, sizeof(add->szLongName)/sizeof(WCHAR) );
210 MultiByteToWideChar( CP_ACP, 0, "Brought to you by the Wine team...", -1,
211 add->szCopyright, sizeof(add->szCopyright)/sizeof(WCHAR) );
212 MultiByteToWideChar( CP_ACP, 0, "Refer to LICENSE file", -1,
213 add->szLicensing, sizeof(add->szLicensing)/sizeof(WCHAR) );
214 add->szFeatures[0] = 0;
216 return MMSYSERR_NOERROR;
219 /***********************************************************************
220 * MPEG3_FormatTagDetails
223 static LRESULT MPEG3_FormatTagDetails(PACMFORMATTAGDETAILSW aftd, DWORD dwQuery)
225 static const WCHAR szPcm[]={'P','C','M',0};
226 static const WCHAR szMpeg3[]={'M','P','e','g','3',0};
228 switch (dwQuery)
230 case ACM_FORMATTAGDETAILSF_INDEX:
231 if (aftd->dwFormatTagIndex >= 2) return ACMERR_NOTPOSSIBLE;
232 break;
233 case ACM_FORMATTAGDETAILSF_LARGESTSIZE:
234 if (aftd->dwFormatTag == WAVE_FORMAT_UNKNOWN)
236 aftd->dwFormatTagIndex = 1; /* WAVE_FORMAT_MPEGLAYER3 is bigger than PCM */
237 break;
239 /* fall thru */
240 case ACM_FORMATTAGDETAILSF_FORMATTAG:
241 switch (aftd->dwFormatTag)
243 case WAVE_FORMAT_PCM: aftd->dwFormatTagIndex = 0; break;
244 case WAVE_FORMAT_MPEGLAYER3: aftd->dwFormatTagIndex = 1; break;
245 default: return ACMERR_NOTPOSSIBLE;
247 break;
248 default:
249 WARN("Unsupported query %08x\n", dwQuery);
250 return MMSYSERR_NOTSUPPORTED;
253 aftd->fdwSupport = ACMDRIVERDETAILS_SUPPORTF_CODEC;
254 switch (aftd->dwFormatTagIndex)
256 case 0:
257 aftd->dwFormatTag = WAVE_FORMAT_PCM;
258 aftd->cbFormatSize = sizeof(PCMWAVEFORMAT);
259 aftd->cStandardFormats = NUM_PCM_FORMATS;
260 lstrcpyW(aftd->szFormatTag, szPcm);
261 break;
262 case 1:
263 aftd->dwFormatTag = WAVE_FORMAT_MPEGLAYER3;
264 aftd->cbFormatSize = sizeof(MPEGLAYER3WAVEFORMAT);
265 aftd->cStandardFormats = NUM_MPEG3_FORMATS;
266 lstrcpyW(aftd->szFormatTag, szMpeg3);
267 break;
269 return MMSYSERR_NOERROR;
272 static void fill_in_wfx(unsigned cbwfx, WAVEFORMATEX* wfx, unsigned bit_rate)
274 MPEGLAYER3WAVEFORMAT* mp3wfx = (MPEGLAYER3WAVEFORMAT*)wfx;
276 wfx->nAvgBytesPerSec = bit_rate / 8;
277 if (cbwfx >= sizeof(WAVEFORMATEX))
278 wfx->cbSize = sizeof(MPEGLAYER3WAVEFORMAT) - sizeof(WAVEFORMATEX);
279 if (cbwfx >= sizeof(MPEGLAYER3WAVEFORMAT))
281 mp3wfx->wID = MPEGLAYER3_ID_MPEG;
282 mp3wfx->fdwFlags = MPEGLAYER3_FLAG_PADDING_OFF;
283 mp3wfx->nBlockSize = (bit_rate * 144) / wfx->nSamplesPerSec;
284 mp3wfx->nFramesPerBlock = 1;
285 mp3wfx->nCodecDelay = 0x0571;
289 /***********************************************************************
290 * MPEG3_FormatDetails
293 static LRESULT MPEG3_FormatDetails(PACMFORMATDETAILSW afd, DWORD dwQuery)
295 switch (dwQuery)
297 case ACM_FORMATDETAILSF_FORMAT:
298 if (MPEG3_GetFormatIndex(afd->pwfx) == 0xFFFFFFFF) return ACMERR_NOTPOSSIBLE;
299 break;
300 case ACM_FORMATDETAILSF_INDEX:
301 afd->pwfx->wFormatTag = afd->dwFormatTag;
302 switch (afd->dwFormatTag)
304 case WAVE_FORMAT_PCM:
305 if (afd->dwFormatIndex >= NUM_PCM_FORMATS) return ACMERR_NOTPOSSIBLE;
306 afd->pwfx->nChannels = PCM_Formats[afd->dwFormatIndex].nChannels;
307 afd->pwfx->nSamplesPerSec = PCM_Formats[afd->dwFormatIndex].rate;
308 afd->pwfx->wBitsPerSample = PCM_Formats[afd->dwFormatIndex].nBits;
309 /* native MSACM uses a PCMWAVEFORMAT structure, so cbSize is not accessible
310 * afd->pwfx->cbSize = 0;
312 afd->pwfx->nBlockAlign =
313 (afd->pwfx->nChannels * afd->pwfx->wBitsPerSample) / 8;
314 afd->pwfx->nAvgBytesPerSec =
315 afd->pwfx->nSamplesPerSec * afd->pwfx->nBlockAlign;
316 break;
317 case WAVE_FORMAT_MPEGLAYER3:
318 if (afd->dwFormatIndex >= NUM_MPEG3_FORMATS) return ACMERR_NOTPOSSIBLE;
319 afd->pwfx->nChannels = MPEG3_Formats[afd->dwFormatIndex].nChannels;
320 afd->pwfx->nSamplesPerSec = MPEG3_Formats[afd->dwFormatIndex].rate;
321 afd->pwfx->wBitsPerSample = MPEG3_Formats[afd->dwFormatIndex].nBits;
322 afd->pwfx->nBlockAlign = 1;
323 fill_in_wfx(afd->cbwfx, afd->pwfx, 192000);
324 break;
325 default:
326 WARN("Unsupported tag %08x\n", afd->dwFormatTag);
327 return MMSYSERR_INVALPARAM;
329 break;
330 default:
331 WARN("Unsupported query %08x\n", dwQuery);
332 return MMSYSERR_NOTSUPPORTED;
334 afd->fdwSupport = ACMDRIVERDETAILS_SUPPORTF_CODEC;
335 afd->szFormat[0] = 0; /* let MSACM format this for us... */
337 return MMSYSERR_NOERROR;
340 /***********************************************************************
341 * MPEG3_FormatSuggest
344 static LRESULT MPEG3_FormatSuggest(PACMDRVFORMATSUGGEST adfs)
346 /* some tests ... */
347 if (adfs->cbwfxSrc < sizeof(PCMWAVEFORMAT) ||
348 adfs->cbwfxDst < sizeof(PCMWAVEFORMAT) ||
349 MPEG3_GetFormatIndex(adfs->pwfxSrc) == 0xFFFFFFFF) return ACMERR_NOTPOSSIBLE;
350 /* FIXME: should do those tests against the real size (according to format tag */
352 /* If no suggestion for destination, then copy source value */
353 if (!(adfs->fdwSuggest & ACM_FORMATSUGGESTF_NCHANNELS))
354 adfs->pwfxDst->nChannels = adfs->pwfxSrc->nChannels;
355 if (!(adfs->fdwSuggest & ACM_FORMATSUGGESTF_NSAMPLESPERSEC))
356 adfs->pwfxDst->nSamplesPerSec = adfs->pwfxSrc->nSamplesPerSec;
358 if (!(adfs->fdwSuggest & ACM_FORMATSUGGESTF_WBITSPERSAMPLE))
360 if (adfs->pwfxSrc->wFormatTag == WAVE_FORMAT_PCM)
361 adfs->pwfxDst->wBitsPerSample = 4;
362 else
363 adfs->pwfxDst->wBitsPerSample = 16;
365 if (!(adfs->fdwSuggest & ACM_FORMATSUGGESTF_WFORMATTAG))
367 if (adfs->pwfxSrc->wFormatTag == WAVE_FORMAT_PCM)
368 adfs->pwfxDst->wFormatTag = WAVE_FORMAT_MPEGLAYER3;
369 else
370 adfs->pwfxDst->wFormatTag = WAVE_FORMAT_PCM;
373 /* check if result is ok */
374 if (MPEG3_GetFormatIndex(adfs->pwfxDst) == 0xFFFFFFFF) return ACMERR_NOTPOSSIBLE;
376 /* recompute other values */
377 switch (adfs->pwfxDst->wFormatTag)
379 case WAVE_FORMAT_PCM:
380 adfs->pwfxDst->nBlockAlign = (adfs->pwfxDst->nChannels * adfs->pwfxDst->wBitsPerSample) / 8;
381 adfs->pwfxDst->nAvgBytesPerSec = adfs->pwfxDst->nSamplesPerSec * adfs->pwfxDst->nBlockAlign;
382 break;
383 case WAVE_FORMAT_MPEGLAYER3:
384 adfs->pwfxDst->nBlockAlign = 1;
385 fill_in_wfx(adfs->cbwfxDst, adfs->pwfxDst, 192000);
386 break;
387 default:
388 FIXME("\n");
389 break;
392 return MMSYSERR_NOERROR;
395 /***********************************************************************
396 * MPEG3_Reset
399 static void MPEG3_Reset(PACMDRVSTREAMINSTANCE adsi, AcmMpeg3Data* aad)
401 mpg123_feedseek(aad->mh, 0, SEEK_SET, NULL);
402 mpg123_close(aad->mh);
403 mpg123_open_feed(aad->mh);
406 /***********************************************************************
407 * MPEG3_StreamOpen
410 static LRESULT MPEG3_StreamOpen(PACMDRVSTREAMINSTANCE adsi)
412 AcmMpeg3Data* aad;
413 int err;
415 assert(!(adsi->fdwOpen & ACM_STREAMOPENF_ASYNC));
417 if (MPEG3_GetFormatIndex(adsi->pwfxSrc) == 0xFFFFFFFF ||
418 MPEG3_GetFormatIndex(adsi->pwfxDst) == 0xFFFFFFFF)
419 return ACMERR_NOTPOSSIBLE;
421 aad = HeapAlloc(GetProcessHeap(), 0, sizeof(AcmMpeg3Data));
422 if (aad == 0) return MMSYSERR_NOMEM;
424 adsi->dwDriver = (DWORD_PTR)aad;
426 if (adsi->pwfxSrc->wFormatTag == WAVE_FORMAT_PCM &&
427 adsi->pwfxDst->wFormatTag == WAVE_FORMAT_PCM)
429 goto theEnd;
431 else if (adsi->pwfxSrc->wFormatTag == WAVE_FORMAT_MPEGLAYER3 &&
432 adsi->pwfxDst->wFormatTag == WAVE_FORMAT_PCM)
434 /* resampling or mono <=> stereo not available
435 * MPEG3 algo only define 16 bit per sample output
437 if (adsi->pwfxSrc->nSamplesPerSec != adsi->pwfxDst->nSamplesPerSec ||
438 adsi->pwfxSrc->nChannels != adsi->pwfxDst->nChannels ||
439 adsi->pwfxDst->wBitsPerSample != 16)
440 goto theEnd;
441 aad->convert = mp3_horse;
442 aad->mh = mpg123_new(NULL,&err);
443 mpg123_open_feed(aad->mh);
445 /* no encoding yet
446 else if (adsi->pwfxSrc->wFormatTag == WAVE_FORMAT_PCM &&
447 adsi->pwfxDst->wFormatTag == WAVE_FORMAT_MPEGLAYER3)
449 else goto theEnd;
450 MPEG3_Reset(adsi, aad);
452 return MMSYSERR_NOERROR;
454 theEnd:
455 HeapFree(GetProcessHeap(), 0, aad);
456 adsi->dwDriver = 0L;
457 return MMSYSERR_NOTSUPPORTED;
460 /***********************************************************************
461 * MPEG3_StreamClose
464 static LRESULT MPEG3_StreamClose(PACMDRVSTREAMINSTANCE adsi)
466 mpg123_close(((AcmMpeg3Data*)adsi->dwDriver)->mh);
467 mpg123_delete(((AcmMpeg3Data*)adsi->dwDriver)->mh);
468 HeapFree(GetProcessHeap(), 0, (void*)adsi->dwDriver);
469 return MMSYSERR_NOERROR;
472 /***********************************************************************
473 * MPEG3_StreamSize
476 static LRESULT MPEG3_StreamSize(PACMDRVSTREAMINSTANCE adsi, PACMDRVSTREAMSIZE adss)
478 DWORD nblocks;
480 switch (adss->fdwSize)
482 case ACM_STREAMSIZEF_DESTINATION:
483 /* cbDstLength => cbSrcLength */
484 if (adsi->pwfxSrc->wFormatTag == WAVE_FORMAT_PCM &&
485 adsi->pwfxDst->wFormatTag == WAVE_FORMAT_MPEGLAYER3)
487 nblocks = (adss->cbDstLength - 3000) / (DWORD)(adsi->pwfxDst->nAvgBytesPerSec * 1152 / adsi->pwfxDst->nSamplesPerSec + 0.5);
488 if (nblocks == 0)
489 return ACMERR_NOTPOSSIBLE;
490 adss->cbSrcLength = nblocks * 1152 * adsi->pwfxSrc->nBlockAlign;
492 else if (adsi->pwfxSrc->wFormatTag == WAVE_FORMAT_MPEGLAYER3 &&
493 adsi->pwfxDst->wFormatTag == WAVE_FORMAT_PCM)
495 nblocks = adss->cbDstLength / (adsi->pwfxDst->nBlockAlign * 1152);
496 if (nblocks == 0)
497 return ACMERR_NOTPOSSIBLE;
498 adss->cbSrcLength = nblocks * (DWORD)(adsi->pwfxSrc->nAvgBytesPerSec * 1152 / adsi->pwfxSrc->nSamplesPerSec);
500 else
502 return MMSYSERR_NOTSUPPORTED;
504 break;
505 case ACM_STREAMSIZEF_SOURCE:
506 /* cbSrcLength => cbDstLength */
507 if (adsi->pwfxSrc->wFormatTag == WAVE_FORMAT_PCM &&
508 adsi->pwfxDst->wFormatTag == WAVE_FORMAT_MPEGLAYER3)
510 nblocks = adss->cbSrcLength / (adsi->pwfxSrc->nBlockAlign * 1152);
511 if (nblocks == 0)
512 return ACMERR_NOTPOSSIBLE;
513 if (adss->cbSrcLength % (DWORD)(adsi->pwfxSrc->nBlockAlign * 1152))
514 /* Round block count up. */
515 nblocks++;
516 adss->cbDstLength = 3000 + nblocks * (DWORD)(adsi->pwfxDst->nAvgBytesPerSec * 1152 / adsi->pwfxDst->nSamplesPerSec + 0.5);
518 else if (adsi->pwfxSrc->wFormatTag == WAVE_FORMAT_MPEGLAYER3 &&
519 adsi->pwfxDst->wFormatTag == WAVE_FORMAT_PCM)
521 nblocks = adss->cbSrcLength / (DWORD)(adsi->pwfxSrc->nAvgBytesPerSec * 1152 / adsi->pwfxSrc->nSamplesPerSec);
522 if (nblocks == 0)
523 return ACMERR_NOTPOSSIBLE;
524 if (adss->cbSrcLength % (DWORD)(adsi->pwfxSrc->nAvgBytesPerSec * 1152 / adsi->pwfxSrc->nSamplesPerSec))
525 /* Round block count up. */
526 nblocks++;
527 adss->cbDstLength = nblocks * 1152 * adsi->pwfxDst->nBlockAlign;
529 else
531 return MMSYSERR_NOTSUPPORTED;
533 break;
534 default:
535 WARN("Unsupported query %08x\n", adss->fdwSize);
536 return MMSYSERR_NOTSUPPORTED;
538 return MMSYSERR_NOERROR;
541 /***********************************************************************
542 * MPEG3_StreamConvert
545 static LRESULT MPEG3_StreamConvert(PACMDRVSTREAMINSTANCE adsi, PACMDRVSTREAMHEADER adsh)
547 AcmMpeg3Data* aad = (AcmMpeg3Data*)adsi->dwDriver;
548 DWORD nsrc = adsh->cbSrcLength;
549 DWORD ndst = adsh->cbDstLength;
551 if (adsh->fdwConvert &
552 ~(ACM_STREAMCONVERTF_BLOCKALIGN|
553 ACM_STREAMCONVERTF_END|
554 ACM_STREAMCONVERTF_START))
556 FIXME("Unsupported fdwConvert (%08x), ignoring it\n", adsh->fdwConvert);
558 /* ACM_STREAMCONVERTF_BLOCKALIGN
559 * currently all conversions are block aligned, so do nothing for this flag
560 * ACM_STREAMCONVERTF_END
561 * no pending data, so do nothing for this flag
563 if ((adsh->fdwConvert & ACM_STREAMCONVERTF_START))
565 MPEG3_Reset(adsi, aad);
568 aad->convert(adsi, adsh->pbSrc, &nsrc, adsh->pbDst, &ndst);
569 adsh->cbSrcLengthUsed = nsrc;
570 adsh->cbDstLengthUsed = ndst;
572 return MMSYSERR_NOERROR;
575 /**************************************************************************
576 * MPEG3_DriverProc [exported]
578 LRESULT CALLBACK MPEG3_DriverProc(DWORD_PTR dwDevID, HDRVR hDriv, UINT wMsg,
579 LPARAM dwParam1, LPARAM dwParam2)
581 TRACE("(%08lx %p %04x %08lx %08lx);\n",
582 dwDevID, hDriv, wMsg, dwParam1, dwParam2);
584 switch (wMsg)
586 case DRV_LOAD: return 1;
587 case DRV_FREE: return 1;
588 case DRV_OPEN: return MPEG3_drvOpen((LPSTR)dwParam1);
589 case DRV_CLOSE: return MPEG3_drvClose(dwDevID);
590 case DRV_ENABLE: return 1;
591 case DRV_DISABLE: return 1;
592 case DRV_QUERYCONFIGURE: return 1;
593 case DRV_CONFIGURE: MessageBoxA(0, "MPEG3 filter !", "Wine Driver", MB_OK); return 1;
594 case DRV_INSTALL: return DRVCNF_RESTART;
595 case DRV_REMOVE: return DRVCNF_RESTART;
597 case ACMDM_DRIVER_NOTIFY:
598 /* no caching from other ACM drivers is done so far */
599 return MMSYSERR_NOERROR;
601 case ACMDM_DRIVER_DETAILS:
602 return MPEG3_DriverDetails((PACMDRIVERDETAILSW)dwParam1);
604 case ACMDM_FORMATTAG_DETAILS:
605 return MPEG3_FormatTagDetails((PACMFORMATTAGDETAILSW)dwParam1, dwParam2);
607 case ACMDM_FORMAT_DETAILS:
608 return MPEG3_FormatDetails((PACMFORMATDETAILSW)dwParam1, dwParam2);
610 case ACMDM_FORMAT_SUGGEST:
611 return MPEG3_FormatSuggest((PACMDRVFORMATSUGGEST)dwParam1);
613 case ACMDM_STREAM_OPEN:
614 return MPEG3_StreamOpen((PACMDRVSTREAMINSTANCE)dwParam1);
616 case ACMDM_STREAM_CLOSE:
617 return MPEG3_StreamClose((PACMDRVSTREAMINSTANCE)dwParam1);
619 case ACMDM_STREAM_SIZE:
620 return MPEG3_StreamSize((PACMDRVSTREAMINSTANCE)dwParam1, (PACMDRVSTREAMSIZE)dwParam2);
622 case ACMDM_STREAM_CONVERT:
623 return MPEG3_StreamConvert((PACMDRVSTREAMINSTANCE)dwParam1, (PACMDRVSTREAMHEADER)dwParam2);
625 case ACMDM_HARDWARE_WAVE_CAPS_INPUT:
626 case ACMDM_HARDWARE_WAVE_CAPS_OUTPUT:
627 /* this converter is not a hardware driver */
628 case ACMDM_FILTERTAG_DETAILS:
629 case ACMDM_FILTER_DETAILS:
630 /* this converter is not a filter */
631 case ACMDM_STREAM_RESET:
632 /* only needed for asynchronous driver... we aren't, so just say it */
633 return MMSYSERR_NOTSUPPORTED;
634 case ACMDM_STREAM_PREPARE:
635 case ACMDM_STREAM_UNPREPARE:
636 /* nothing special to do here... so don't do anything */
637 return MMSYSERR_NOERROR;
639 default:
640 return DefDriverProc(dwDevID, hDriv, wMsg, dwParam1, dwParam2);