1 /* -*- tab-width: 8; c-basic-offset: 4 -*- */
6 * Copyright 1998 Patrik Stridvall
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
38 #include "wine/debug.h"
39 #include "wine/unicode.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(msacm);
43 /**********************************************************************/
45 HANDLE MSACM_hHeap = NULL;
46 PWINE_ACMDRIVERID MSACM_pFirstACMDriverID = NULL;
47 static PWINE_ACMDRIVERID MSACM_pLastACMDriverID;
49 static DWORD MSACM_suspendBroadcastCount = 0;
50 static BOOL MSACM_pendingBroadcast = FALSE;
51 static PWINE_ACMNOTIFYWND MSACM_pFirstACMNotifyWnd = NULL;
52 static PWINE_ACMNOTIFYWND MSACM_pLastACMNotifyWnd = NULL;
54 static void MSACM_ReorderDriversByPriority(void);
56 /***********************************************************************
57 * MSACM_RegisterDriverFromRegistry()
59 PWINE_ACMDRIVERID MSACM_RegisterDriverFromRegistry(LPCWSTR pszRegEntry)
61 static const WCHAR msacmW[] = {'M','S','A','C','M','.'};
62 static const WCHAR drvkey[] = {'S','o','f','t','w','a','r','e','\\',
63 'M','i','c','r','o','s','o','f','t','\\',
64 'W','i','n','d','o','w','s',' ','N','T','\\',
65 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
66 'D','r','i','v','e','r','s','3','2','\0'};
70 PWINE_ACMDRIVERID padid = NULL;
72 /* The requested registry entry must have the format msacm.XXXXX in order to
73 be recognized in any future sessions of msacm
75 if (0 == strncmpiW(buf, msacmW, sizeof(msacmW)/sizeof(WCHAR))) {
76 lRet = RegOpenKeyExW(HKEY_LOCAL_MACHINE, drvkey, 0, KEY_QUERY_VALUE, &hKey);
77 if (lRet != ERROR_SUCCESS) {
78 WARN("unable to open registry key - 0x%08x\n", lRet);
81 lRet = RegQueryValueExW(hKey, pszRegEntry, NULL, NULL, (LPBYTE)buf, &bufLen);
82 if (lRet != ERROR_SUCCESS) {
83 WARN("unable to query requested subkey %s - 0x%08x\n", debugstr_w(pszRegEntry), lRet);
85 MSACM_RegisterDriver(pszRegEntry, buf, 0);
94 /***********************************************************************
97 static void MSACM_DumpCache(PWINE_ACMDRIVERID padid)
101 TRACE("cFilterTags=%lu cFormatTags=%lu fdwSupport=%08lx\n",
102 padid->cFilterTags, padid->cFormatTags, padid->fdwSupport);
103 for (i = 0; i < padid->cache->cFormatTags; i++) {
104 TRACE("\tdwFormatTag=%lu cbwfx=%lu\n",
105 padid->aFormatTag[i].dwFormatTag, padid->aFormatTag[i].cbwfx);
110 /***********************************************************************
111 * MSACM_FindFormatTagInCache [internal]
113 * Returns TRUE is the format tag fmtTag is present in the cache.
114 * If so, idx is set to its index.
116 BOOL MSACM_FindFormatTagInCache(const WINE_ACMDRIVERID* padid, DWORD fmtTag, LPDWORD idx)
120 for (i = 0; i < padid->cFormatTags; i++) {
121 if (padid->aFormatTag[i].dwFormatTag == fmtTag) {
129 /***********************************************************************
132 static BOOL MSACM_FillCache(PWINE_ACMDRIVERID padid)
136 ACMDRIVERDETAILSW add;
137 ACMFORMATTAGDETAILSW aftd;
139 if (acmDriverOpen(&had, (HACMDRIVERID)padid, 0) != 0)
142 padid->aFormatTag = NULL;
143 add.cbStruct = sizeof(add);
144 if (MSACM_Message(had, ACMDM_DRIVER_DETAILS, (LPARAM)&add, 0))
147 if (add.cFormatTags > 0) {
148 padid->aFormatTag = HeapAlloc(MSACM_hHeap, HEAP_ZERO_MEMORY,
149 add.cFormatTags * sizeof(padid->aFormatTag[0]));
150 if (!padid->aFormatTag) goto errCleanUp;
153 padid->cFormatTags = add.cFormatTags;
154 padid->cFilterTags = add.cFilterTags;
155 padid->fdwSupport = add.fdwSupport;
157 aftd.cbStruct = sizeof(aftd);
159 for (ntag = 0; ntag < add.cFormatTags; ntag++) {
160 aftd.dwFormatTagIndex = ntag;
161 if (MSACM_Message(had, ACMDM_FORMATTAG_DETAILS, (LPARAM)&aftd, ACM_FORMATTAGDETAILSF_INDEX)) {
162 TRACE("IIOs (%s)\n", debugstr_w(padid->pszDriverAlias));
165 padid->aFormatTag[ntag].dwFormatTag = aftd.dwFormatTag;
166 padid->aFormatTag[ntag].cbwfx = aftd.cbFormatSize;
169 acmDriverClose(had, 0);
174 if (had) acmDriverClose(had, 0);
175 HeapFree(MSACM_hHeap, 0, padid->aFormatTag);
176 padid->aFormatTag = NULL;
180 /***********************************************************************
181 * MSACM_GetRegistryKey
183 static LPWSTR MSACM_GetRegistryKey(const WINE_ACMDRIVERID* padid)
185 static const WCHAR baseKey[] = {'S','o','f','t','w','a','r','e','\\','M','i','c','r','o','s','o','f','t','\\',
186 'A','u','d','i','o','C','o','m','p','r','e','s','s','i','o','n','M','a','n','a','g','e','r','\\',
187 'D','r','i','v','e','r','C','a','c','h','e','\\','\0'};
191 if (!padid->pszDriverAlias) {
192 ERR("No alias needed for registry entry\n");
195 len = strlenW(baseKey);
196 ret = HeapAlloc(MSACM_hHeap, 0, (len + strlenW(padid->pszDriverAlias) + 1) * sizeof(WCHAR));
197 if (!ret) return NULL;
199 strcpyW(ret, baseKey);
200 strcpyW(ret + len, padid->pszDriverAlias);
201 CharLowerW(ret + len);
205 /***********************************************************************
208 static BOOL MSACM_ReadCache(PWINE_ACMDRIVERID padid)
210 LPWSTR key = MSACM_GetRegistryKey(padid);
214 if (!key) return FALSE;
216 padid->aFormatTag = NULL;
218 if (RegCreateKeyW(HKEY_LOCAL_MACHINE, key, &hKey))
221 size = sizeof(padid->cFormatTags);
222 if (RegQueryValueExA(hKey, "cFormatTags", 0, &type, (void*)&padid->cFormatTags, &size))
224 size = sizeof(padid->cFilterTags);
225 if (RegQueryValueExA(hKey, "cFilterTags", 0, &type, (void*)&padid->cFilterTags, &size))
227 size = sizeof(padid->fdwSupport);
228 if (RegQueryValueExA(hKey, "fdwSupport", 0, &type, (void*)&padid->fdwSupport, &size))
231 if (padid->cFormatTags > 0) {
232 size = padid->cFormatTags * sizeof(padid->aFormatTag[0]);
233 padid->aFormatTag = HeapAlloc(MSACM_hHeap, HEAP_ZERO_MEMORY, size);
234 if (!padid->aFormatTag) goto errCleanUp;
235 if (RegQueryValueExA(hKey, "aFormatTagCache", 0, &type, (void*)padid->aFormatTag, &size))
238 HeapFree(MSACM_hHeap, 0, key);
242 HeapFree(MSACM_hHeap, 0, key);
243 HeapFree(MSACM_hHeap, 0, padid->aFormatTag);
244 padid->aFormatTag = NULL;
249 /***********************************************************************
252 static BOOL MSACM_WriteCache(const WINE_ACMDRIVERID *padid)
254 LPWSTR key = MSACM_GetRegistryKey(padid);
257 if (!key) return FALSE;
259 if (RegCreateKeyW(HKEY_LOCAL_MACHINE, key, &hKey))
262 if (RegSetValueExA(hKey, "cFormatTags", 0, REG_DWORD, (const void*)&padid->cFormatTags, sizeof(DWORD)))
264 if (RegSetValueExA(hKey, "cFilterTags", 0, REG_DWORD, (const void*)&padid->cFilterTags, sizeof(DWORD)))
266 if (RegSetValueExA(hKey, "fdwSupport", 0, REG_DWORD, (const void*)&padid->fdwSupport, sizeof(DWORD)))
268 if (RegSetValueExA(hKey, "aFormatTagCache", 0, REG_BINARY,
269 (void*)padid->aFormatTag,
270 padid->cFormatTags * sizeof(padid->aFormatTag[0])))
272 HeapFree(MSACM_hHeap, 0, key);
276 HeapFree(MSACM_hHeap, 0, key);
280 /***********************************************************************
281 * MSACM_RegisterDriver()
283 PWINE_ACMDRIVERID MSACM_RegisterDriver(LPCWSTR pszDriverAlias, LPCWSTR pszFileName,
284 PWINE_ACMLOCALDRIVER pLocalDriver)
286 PWINE_ACMDRIVERID padid;
288 TRACE("(%s, %s, %p)\n",
289 debugstr_w(pszDriverAlias), debugstr_w(pszFileName), pLocalDriver);
291 padid = HeapAlloc(MSACM_hHeap, 0, sizeof(WINE_ACMDRIVERID));
292 padid->obj.dwType = WINE_ACMOBJ_DRIVERID;
293 padid->obj.pACMDriverID = padid;
294 padid->pszDriverAlias = NULL;
297 padid->pszDriverAlias = HeapAlloc( MSACM_hHeap, 0, (strlenW(pszDriverAlias)+1) * sizeof(WCHAR) );
298 strcpyW( padid->pszDriverAlias, pszDriverAlias );
300 padid->pszFileName = NULL;
303 padid->pszFileName = HeapAlloc( MSACM_hHeap, 0, (strlenW(pszFileName)+1) * sizeof(WCHAR) );
304 strcpyW( padid->pszFileName, pszFileName );
306 padid->pLocalDriver = pLocalDriver;
308 padid->pACMDriverList = NULL;
311 padid->pPrevACMDriverID = NULL;
312 padid->pNextACMDriverID = MSACM_pFirstACMDriverID;
313 if (MSACM_pFirstACMDriverID)
314 MSACM_pFirstACMDriverID->pPrevACMDriverID = padid;
315 MSACM_pFirstACMDriverID = padid;
316 if (!MSACM_pLastACMDriverID)
317 MSACM_pLastACMDriverID = padid;
319 padid->pNextACMDriverID = NULL;
320 padid->pPrevACMDriverID = MSACM_pLastACMDriverID;
321 if (MSACM_pLastACMDriverID)
322 MSACM_pLastACMDriverID->pNextACMDriverID = padid;
323 MSACM_pLastACMDriverID = padid;
324 if (!MSACM_pFirstACMDriverID)
325 MSACM_pFirstACMDriverID = padid;
327 /* disable the driver if we cannot load the cache */
328 if ((!padid->pszDriverAlias || !MSACM_ReadCache(padid)) && !MSACM_FillCache(padid)) {
329 WARN("Couldn't load cache for ACM driver (%s)\n", debugstr_w(pszFileName));
330 MSACM_UnregisterDriver(padid);
334 if (pLocalDriver) padid->fdwSupport |= ACMDRIVERDETAILS_SUPPORTF_LOCAL;
338 /***********************************************************************
339 * MSACM_RegisterAllDrivers()
341 void MSACM_RegisterAllDrivers(void)
343 static const WCHAR msacm32[] = {'m','s','a','c','m','3','2','.','d','l','l','\0'};
344 static const WCHAR msacmW[] = {'M','S','A','C','M','.'};
345 static const WCHAR drv32[] = {'d','r','i','v','e','r','s','3','2','\0'};
346 static const WCHAR sys[] = {'s','y','s','t','e','m','.','i','n','i','\0'};
347 static const WCHAR drvkey[] = {'S','o','f','t','w','a','r','e','\\',
348 'M','i','c','r','o','s','o','f','t','\\',
349 'W','i','n','d','o','w','s',' ','N','T','\\',
350 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
351 'D','r','i','v','e','r','s','3','2','\0'};
352 DWORD i, cnt = 0, bufLen, lRet;
353 WCHAR buf[2048], *name, *s;
357 /* FIXME: What if the user edits system.ini while the program is running?
358 * Does Windows handle that? */
359 if (MSACM_pFirstACMDriverID) return;
361 lRet = RegOpenKeyExW(HKEY_LOCAL_MACHINE, drvkey, 0, KEY_QUERY_VALUE, &hKey);
362 if (lRet == ERROR_SUCCESS) {
363 RegQueryInfoKeyW( hKey, 0, 0, 0, &cnt, 0, 0, 0, 0, 0, 0, 0);
364 for (i = 0; i < cnt; i++) {
365 bufLen = sizeof(buf) / sizeof(buf[0]);
366 lRet = RegEnumKeyExW(hKey, i, buf, &bufLen, 0, 0, 0, &lastWrite);
367 if (lRet != ERROR_SUCCESS) continue;
368 if (strncmpiW(buf, msacmW, sizeof(msacmW)/sizeof(msacmW[0]))) continue;
369 if (!(name = strchrW(buf, '='))) continue;
371 MSACM_RegisterDriver(buf, name + 1, 0);
376 if (GetPrivateProfileSectionW(drv32, buf, sizeof(buf)/sizeof(buf[0]), sys))
378 for(s = buf; *s; s += strlenW(s) + 1)
380 if (strncmpiW(s, msacmW, sizeof(msacmW)/sizeof(msacmW[0]))) continue;
381 if (!(name = strchrW(s, '='))) continue;
383 MSACM_RegisterDriver(s, name + 1, 0);
387 MSACM_ReorderDriversByPriority();
388 MSACM_RegisterDriver(msacm32, msacm32, 0);
391 /***********************************************************************
392 * MSACM_RegisterNotificationWindow()
394 PWINE_ACMNOTIFYWND MSACM_RegisterNotificationWindow(HWND hNotifyWnd, DWORD dwNotifyMsg)
396 PWINE_ACMNOTIFYWND panwnd;
398 TRACE("(%p,0x%08x)\n", hNotifyWnd, dwNotifyMsg);
400 panwnd = HeapAlloc(MSACM_hHeap, 0, sizeof(WINE_ACMNOTIFYWND));
401 panwnd->obj.dwType = WINE_ACMOBJ_NOTIFYWND;
402 panwnd->obj.pACMDriverID = 0;
403 panwnd->hNotifyWnd = hNotifyWnd;
404 panwnd->dwNotifyMsg = dwNotifyMsg;
405 panwnd->fdwSupport = 0;
407 panwnd->pNextACMNotifyWnd = NULL;
408 panwnd->pPrevACMNotifyWnd = MSACM_pLastACMNotifyWnd;
409 if (MSACM_pLastACMNotifyWnd)
410 MSACM_pLastACMNotifyWnd->pNextACMNotifyWnd = panwnd;
411 MSACM_pLastACMNotifyWnd = panwnd;
412 if (!MSACM_pFirstACMNotifyWnd)
413 MSACM_pFirstACMNotifyWnd = panwnd;
418 /***********************************************************************
419 * MSACM_BroadcastNotification()
421 void MSACM_BroadcastNotification(void)
423 if (MSACM_suspendBroadcastCount <= 0) {
424 PWINE_ACMNOTIFYWND panwnd;
426 for (panwnd = MSACM_pFirstACMNotifyWnd; panwnd; panwnd = panwnd->pNextACMNotifyWnd)
427 if (!(panwnd->fdwSupport & ACMDRIVERDETAILS_SUPPORTF_DISABLED))
428 SendMessageW(panwnd->hNotifyWnd, panwnd->dwNotifyMsg, 0, 0);
430 MSACM_pendingBroadcast = TRUE;
434 /***********************************************************************
435 * MSACM_DisableNotifications()
437 void MSACM_DisableNotifications(void)
439 MSACM_suspendBroadcastCount++;
442 /***********************************************************************
443 * MSACM_EnableNotifications()
445 void MSACM_EnableNotifications(void)
447 if (MSACM_suspendBroadcastCount > 0) {
448 MSACM_suspendBroadcastCount--;
449 if (MSACM_suspendBroadcastCount == 0 && MSACM_pendingBroadcast) {
450 MSACM_pendingBroadcast = FALSE;
451 MSACM_BroadcastNotification();
456 /***********************************************************************
457 * MSACM_UnRegisterNotificationWindow()
459 PWINE_ACMNOTIFYWND MSACM_UnRegisterNotificationWindow(const WINE_ACMNOTIFYWND *panwnd)
461 PWINE_ACMNOTIFYWND p;
463 for (p = MSACM_pFirstACMNotifyWnd; p; p = p->pNextACMNotifyWnd) {
465 PWINE_ACMNOTIFYWND pNext = p->pNextACMNotifyWnd;
467 if (p->pPrevACMNotifyWnd) p->pPrevACMNotifyWnd->pNextACMNotifyWnd = p->pNextACMNotifyWnd;
468 if (p->pNextACMNotifyWnd) p->pNextACMNotifyWnd->pPrevACMNotifyWnd = p->pPrevACMNotifyWnd;
469 if (MSACM_pFirstACMNotifyWnd == p) MSACM_pFirstACMNotifyWnd = p->pNextACMNotifyWnd;
470 if (MSACM_pLastACMNotifyWnd == p) MSACM_pLastACMNotifyWnd = p->pPrevACMNotifyWnd;
471 HeapFree(MSACM_hHeap, 0, p);
479 /***********************************************************************
480 * MSACM_RePositionDriver()
482 void MSACM_RePositionDriver(PWINE_ACMDRIVERID padid, DWORD dwPriority)
484 PWINE_ACMDRIVERID pTargetPosition = NULL;
486 /* Remove selected driver from linked list */
487 if (MSACM_pFirstACMDriverID == padid) {
488 MSACM_pFirstACMDriverID = padid->pNextACMDriverID;
490 if (MSACM_pLastACMDriverID == padid) {
491 MSACM_pLastACMDriverID = padid->pPrevACMDriverID;
493 if (padid->pPrevACMDriverID != NULL) {
494 padid->pPrevACMDriverID->pNextACMDriverID = padid->pNextACMDriverID;
496 if (padid->pNextACMDriverID != NULL) {
497 padid->pNextACMDriverID->pPrevACMDriverID = padid->pPrevACMDriverID;
500 /* Look up position where selected driver should be */
501 if (dwPriority == 1) {
502 pTargetPosition = padid->pPrevACMDriverID;
503 while (pTargetPosition->pPrevACMDriverID != NULL &&
504 !(pTargetPosition->pPrevACMDriverID->fdwSupport & ACMDRIVERDETAILS_SUPPORTF_LOCAL)) {
505 pTargetPosition = pTargetPosition->pPrevACMDriverID;
507 } else if (dwPriority == -1) {
508 pTargetPosition = padid->pNextACMDriverID;
509 while (pTargetPosition->pNextACMDriverID != NULL) {
510 pTargetPosition = pTargetPosition->pNextACMDriverID;
514 /* Place selected driver in selected position */
515 padid->pPrevACMDriverID = pTargetPosition->pPrevACMDriverID;
516 padid->pNextACMDriverID = pTargetPosition;
517 if (padid->pPrevACMDriverID != NULL) {
518 padid->pPrevACMDriverID->pNextACMDriverID = padid;
520 MSACM_pFirstACMDriverID = padid;
522 if (padid->pNextACMDriverID != NULL) {
523 padid->pNextACMDriverID->pPrevACMDriverID = padid;
525 MSACM_pLastACMDriverID = padid;
529 /***********************************************************************
530 * MSACM_ReorderDriversByPriority()
531 * Reorders all drivers based on the priority list indicated by the registry key:
532 * HKCU\\Software\\Microsoft\\Multimedia\\Audio Compression Manager\\Priority v4.00
534 static void MSACM_ReorderDriversByPriority(void)
536 PWINE_ACMDRIVERID padid;
537 unsigned int iNumDrivers;
538 PWINE_ACMDRIVERID * driverList = NULL;
539 HKEY hPriorityKey = NULL;
543 /* Count drivers && alloc corresponding memory for list */
545 for (padid = MSACM_pFirstACMDriverID; padid; padid = padid->pNextACMDriverID) iNumDrivers++;
549 static const WCHAR basePriorityKey[] = {
550 'S','o','f','t','w','a','r','e','\\',
551 'M','i','c','r','o','s','o','f','t','\\',
552 'M','u','l','t','i','m','e','d','i','a','\\',
553 'A','u','d','i','o',' ','C','o','m','p','r','e','s','s','i','o','n',' ','M','a','n','a','g','e','r','\\',
554 'P','r','i','o','r','i','t','y',' ','v','4','.','0','0','\0'
560 driverList = HeapAlloc(MSACM_hHeap, 0, iNumDrivers * sizeof(PWINE_ACMDRIVERID));
563 ERR("out of memory\n");
567 lError = RegOpenKeyW(HKEY_CURRENT_USER, basePriorityKey, &hPriorityKey);
568 if (lError != ERROR_SUCCESS) {
569 TRACE("RegOpenKeyW failed, possibly key does not exist yet\n");
574 /* Copy drivers into list to simplify linked list modification */
575 for (i = 0, padid = MSACM_pFirstACMDriverID; padid; padid = padid->pNextACMDriverID, i++)
577 driverList[i] = padid;
580 /* Query each of the priorities in turn. Alias key is in lowercase.
581 The general form of the priority record is the following:
582 "PriorityN" --> "1, msacm.driveralias"
583 where N is an integer, and the value is a string of the driver
584 alias, prefixed by "1, " for an enabled driver, or "0, " for a
587 for (i = 0; i < iNumDrivers; i++)
589 static const WCHAR priorityTmpl[] = {'P','r','i','o','r','i','t','y','%','l','d','\0'};
591 unsigned int iTargetPosition;
592 unsigned int iCurrentPosition;
594 static const WCHAR sPrefix[] = {'m','s','a','c','m','.','\0'};
596 /* Build expected entry name */
597 snprintfW(szSubKey, 17, priorityTmpl, i + 1);
598 lBufferLength = sizeof(szBuffer);
599 lError = RegQueryValueExW(hPriorityKey, szSubKey, NULL, NULL, (LPBYTE)szBuffer, (LPDWORD)&lBufferLength);
600 if (lError != ERROR_SUCCESS) continue;
602 /* Recovered driver alias should be at this position */
605 /* Locate driver alias in driver list */
606 pAlias = strstrW(szBuffer, sPrefix);
607 if (pAlias == NULL) continue;
609 for (iCurrentPosition = 0; iCurrentPosition < iNumDrivers; iCurrentPosition++) {
610 if (strcmpiW(driverList[iCurrentPosition]->pszDriverAlias, pAlias) == 0)
613 if (iCurrentPosition < iNumDrivers && iTargetPosition != iCurrentPosition) {
614 padid = driverList[iTargetPosition];
615 driverList[iTargetPosition] = driverList[iCurrentPosition];
616 driverList[iCurrentPosition] = padid;
618 /* Locate enabled status */
619 if (szBuffer[0] == '1') {
620 driverList[iTargetPosition]->fdwSupport &= ~ACMDRIVERDETAILS_SUPPORTF_DISABLED;
621 } else if (szBuffer[0] == '0') {
622 driverList[iTargetPosition]->fdwSupport |= ACMDRIVERDETAILS_SUPPORTF_DISABLED;
627 /* Re-assign pointers so that linked list traverses the ordered array */
628 for (i = 0; i < iNumDrivers; i++) {
629 driverList[i]->pPrevACMDriverID = (i > 0) ? driverList[i - 1] : NULL;
630 driverList[i]->pNextACMDriverID = (i < iNumDrivers - 1) ? driverList[i + 1] : NULL;
632 MSACM_pFirstACMDriverID = driverList[0];
633 MSACM_pLastACMDriverID = driverList[iNumDrivers - 1];
637 if (hPriorityKey != NULL) RegCloseKey(hPriorityKey);
638 HeapFree(MSACM_hHeap, 0, driverList);
641 /***********************************************************************
642 * MSACM_WriteCurrentPriorities()
643 * Writes out current order of driver priorities to registry key:
644 * HKCU\\Software\\Microsoft\\Multimedia\\Audio Compression Manager\\Priority v4.00
646 void MSACM_WriteCurrentPriorities(void)
650 static const WCHAR basePriorityKey[] = {
651 'S','o','f','t','w','a','r','e','\\',
652 'M','i','c','r','o','s','o','f','t','\\',
653 'M','u','l','t','i','m','e','d','i','a','\\',
654 'A','u','d','i','o',' ','C','o','m','p','r','e','s','s','i','o','n',' ','M','a','n','a','g','e','r','\\',
655 'P','r','i','o','r','i','t','y',' ','v','4','.','0','0','\0'
657 PWINE_ACMDRIVERID padid;
658 DWORD dwPriorityCounter;
659 static const WCHAR priorityTmpl[] = {'P','r','i','o','r','i','t','y','%','l','d','\0'};
660 static const WCHAR valueTmpl[] = {'%','c',',',' ','%','s','\0'};
661 static const WCHAR converterAlias[] = {'I','n','t','e','r','n','a','l',' ','P','C','M',' ','C','o','n','v','e','r','t','e','r','\0'};
665 /* Delete ACM priority key and create it anew */
666 lError = RegDeleteKeyW(HKEY_CURRENT_USER, basePriorityKey);
667 if (lError != ERROR_SUCCESS && lError != ERROR_FILE_NOT_FOUND) {
668 ERR("unable to remove current key %s (0x%08x) - priority changes won't persist past application end.\n",
669 debugstr_w(basePriorityKey), lError);
672 lError = RegCreateKeyW(HKEY_CURRENT_USER, basePriorityKey, &hPriorityKey);
673 if (lError != ERROR_SUCCESS) {
674 ERR("unable to create key %s (0x%08x) - priority changes won't persist past application end.\n",
675 debugstr_w(basePriorityKey), lError);
679 /* Write current list of priorities */
680 for (dwPriorityCounter = 0, padid = MSACM_pFirstACMDriverID; padid; padid = padid->pNextACMDriverID) {
681 if (padid->fdwSupport & ACMDRIVERDETAILS_SUPPORTF_LOCAL) continue;
682 if (padid->pszDriverAlias == NULL) continue; /* internal PCM converter is last */
684 /* Build required value name */
686 snprintfW(szSubKey, 17, priorityTmpl, dwPriorityCounter);
688 /* Value has a 1 in front for enabled drivers and 0 for disabled drivers */
689 snprintfW(szBuffer, 256, valueTmpl, (padid->fdwSupport & ACMDRIVERDETAILS_SUPPORTF_DISABLED) ? '0' : '1', padid->pszDriverAlias);
692 lError = RegSetValueExW(hPriorityKey, szSubKey, 0, REG_SZ, (BYTE *)szBuffer, (strlenW(szBuffer) + 1) * sizeof(WCHAR));
693 if (lError != ERROR_SUCCESS) {
694 ERR("unable to write value for %s under key %s (0x%08x)\n",
695 debugstr_w(padid->pszDriverAlias), debugstr_w(basePriorityKey), lError);
699 /* Build required value name */
701 snprintfW(szSubKey, 17, priorityTmpl, dwPriorityCounter);
703 /* Value has a 1 in front for enabled drivers and 0 for disabled drivers */
704 snprintfW(szBuffer, 256, valueTmpl, '1', converterAlias);
706 lError = RegSetValueExW(hPriorityKey, szSubKey, 0, REG_SZ, (BYTE *)szBuffer, (strlenW(szBuffer) + 1) * sizeof(WCHAR));
707 if (lError != ERROR_SUCCESS) {
708 ERR("unable to write value for %s under key %s (0x%08x)\n",
709 debugstr_w(converterAlias), debugstr_w(basePriorityKey), lError);
711 RegCloseKey(hPriorityKey);
714 static PWINE_ACMLOCALDRIVER MSACM_pFirstACMLocalDriver;
715 static PWINE_ACMLOCALDRIVER MSACM_pLastACMLocalDriver;
717 static PWINE_ACMLOCALDRIVER MSACM_UnregisterLocalDriver(PWINE_ACMLOCALDRIVER paldrv)
719 PWINE_ACMLOCALDRIVER pNextACMLocalDriver;
721 if (paldrv->pACMInstList) {
722 ERR("local driver instances still present after closing all drivers - memory leak\n");
726 if (paldrv == MSACM_pFirstACMLocalDriver)
727 MSACM_pFirstACMLocalDriver = paldrv->pNextACMLocalDrv;
728 if (paldrv == MSACM_pLastACMLocalDriver)
729 MSACM_pLastACMLocalDriver = paldrv->pPrevACMLocalDrv;
731 if (paldrv->pPrevACMLocalDrv)
732 paldrv->pPrevACMLocalDrv->pNextACMLocalDrv = paldrv->pNextACMLocalDrv;
733 if (paldrv->pNextACMLocalDrv)
734 paldrv->pNextACMLocalDrv->pPrevACMLocalDrv = paldrv->pPrevACMLocalDrv;
736 pNextACMLocalDriver = paldrv->pNextACMLocalDrv;
738 HeapFree(MSACM_hHeap, 0, paldrv);
740 return pNextACMLocalDriver;
743 /***********************************************************************
744 * MSACM_UnregisterDriver()
746 PWINE_ACMDRIVERID MSACM_UnregisterDriver(PWINE_ACMDRIVERID p)
748 PWINE_ACMDRIVERID pNextACMDriverID;
750 while (p->pACMDriverList)
751 acmDriverClose((HACMDRIVER) p->pACMDriverList, 0);
753 HeapFree(MSACM_hHeap, 0, p->pszDriverAlias);
754 HeapFree(MSACM_hHeap, 0, p->pszFileName);
755 HeapFree(MSACM_hHeap, 0, p->aFormatTag);
757 if (p == MSACM_pFirstACMDriverID)
758 MSACM_pFirstACMDriverID = p->pNextACMDriverID;
759 if (p == MSACM_pLastACMDriverID)
760 MSACM_pLastACMDriverID = p->pPrevACMDriverID;
762 if (p->pPrevACMDriverID)
763 p->pPrevACMDriverID->pNextACMDriverID = p->pNextACMDriverID;
764 if (p->pNextACMDriverID)
765 p->pNextACMDriverID->pPrevACMDriverID = p->pPrevACMDriverID;
767 pNextACMDriverID = p->pNextACMDriverID;
769 if (p->pLocalDriver) MSACM_UnregisterLocalDriver(p->pLocalDriver);
770 HeapFree(MSACM_hHeap, 0, p);
772 return pNextACMDriverID;
775 /***********************************************************************
776 * MSACM_UnregisterAllDrivers()
778 void MSACM_UnregisterAllDrivers(void)
780 PWINE_ACMNOTIFYWND panwnd = MSACM_pFirstACMNotifyWnd;
781 PWINE_ACMDRIVERID p = MSACM_pFirstACMDriverID;
785 p = MSACM_UnregisterDriver(p);
789 panwnd = MSACM_UnRegisterNotificationWindow(panwnd);
793 /***********************************************************************
796 PWINE_ACMOBJ MSACM_GetObj(HACMOBJ hObj, DWORD type)
798 PWINE_ACMOBJ pao = (PWINE_ACMOBJ)hObj;
800 if (pao == NULL || IsBadReadPtr(pao, sizeof(WINE_ACMOBJ)) ||
801 ((type != WINE_ACMOBJ_DONTCARE) && (type != pao->dwType)))
806 /***********************************************************************
807 * MSACM_GetDriverID()
809 PWINE_ACMDRIVERID MSACM_GetDriverID(HACMDRIVERID hDriverID)
811 return (PWINE_ACMDRIVERID)MSACM_GetObj((HACMOBJ)hDriverID, WINE_ACMOBJ_DRIVERID);
814 /***********************************************************************
817 PWINE_ACMDRIVER MSACM_GetDriver(HACMDRIVER hDriver)
819 return (PWINE_ACMDRIVER)MSACM_GetObj((HACMOBJ)hDriver, WINE_ACMOBJ_DRIVER);
822 /***********************************************************************
823 * MSACM_GetNotifyWnd()
825 PWINE_ACMNOTIFYWND MSACM_GetNotifyWnd(HACMDRIVERID hDriver)
827 return (PWINE_ACMNOTIFYWND)MSACM_GetObj((HACMOBJ)hDriver, WINE_ACMOBJ_NOTIFYWND);
830 /***********************************************************************
831 * MSACM_GetLocalDriver()
834 PWINE_ACMLOCALDRIVER MSACM_GetLocalDriver(HACMDRIVER hDriver)
836 return (PWINE_ACMLOCALDRIVER)MSACM_GetObj((HACMOBJ)hDriver, WINE_ACMOBJ_LOCALDRIVER);
839 #define MSACM_DRIVER_SendMessage(PDRVRINST, msg, lParam1, lParam2) \
840 (PDRVRINST)->pLocalDriver->lpDrvProc((PDRVRINST)->dwDriverID, (HDRVR)(PDRVRINST), msg, lParam1, lParam2)
842 /***********************************************************************
845 MMRESULT MSACM_Message(HACMDRIVER had, UINT uMsg, LPARAM lParam1, LPARAM lParam2)
847 PWINE_ACMDRIVER pad = MSACM_GetDriver(had);
849 if (!pad) return MMSYSERR_INVALHANDLE;
850 if (pad->hDrvr) return SendDriverMessage(pad->hDrvr, uMsg, lParam1, lParam2);
851 if (pad->pLocalDrvrInst) return MSACM_DRIVER_SendMessage(pad->pLocalDrvrInst, uMsg, lParam1, lParam2);
853 return MMSYSERR_INVALHANDLE;
856 PWINE_ACMLOCALDRIVER MSACM_RegisterLocalDriver(HMODULE hModule, DRIVERPROC lpDriverProc)
858 PWINE_ACMLOCALDRIVER paldrv;
860 TRACE("(%p, %p)\n", hModule, lpDriverProc);
861 if (!hModule || !lpDriverProc) return NULL;
863 /* look up previous instance of local driver module */
864 for (paldrv = MSACM_pFirstACMLocalDriver; paldrv; paldrv = paldrv->pNextACMLocalDrv)
866 if (paldrv->hModule == hModule && paldrv->lpDrvProc == lpDriverProc) return paldrv;
869 paldrv = HeapAlloc(MSACM_hHeap, 0, sizeof(WINE_ACMLOCALDRIVER));
870 paldrv->obj.dwType = WINE_ACMOBJ_LOCALDRIVER;
871 paldrv->obj.pACMDriverID = 0;
872 paldrv->hModule = hModule;
873 paldrv->lpDrvProc = lpDriverProc;
874 paldrv->pACMInstList = NULL;
876 paldrv->pNextACMLocalDrv = NULL;
877 paldrv->pPrevACMLocalDrv = MSACM_pLastACMLocalDriver;
878 if (MSACM_pLastACMLocalDriver)
879 MSACM_pLastACMLocalDriver->pNextACMLocalDrv = paldrv;
880 MSACM_pLastACMLocalDriver = paldrv;
881 if (!MSACM_pFirstACMLocalDriver)
882 MSACM_pFirstACMLocalDriver = paldrv;
887 /**************************************************************************
888 * MSACM_GetNumberOfModuleRefs [internal]
890 * Returns the number of open drivers which share the same module.
891 * Inspired from implementation in dlls/winmm/driver.c
893 static unsigned MSACM_GetNumberOfModuleRefs(HMODULE hModule, DRIVERPROC lpDrvProc, WINE_ACMLOCALDRIVERINST ** found)
895 PWINE_ACMLOCALDRIVER lpDrv;
898 if (found) *found = NULL;
899 for (lpDrv = MSACM_pFirstACMLocalDriver; lpDrv; lpDrv = lpDrv->pNextACMLocalDrv)
901 if (lpDrv->hModule == hModule && lpDrv->lpDrvProc == lpDrvProc)
903 PWINE_ACMLOCALDRIVERINST pInst = lpDrv->pACMInstList;
906 if (found && !*found) *found = pInst;
908 pInst = pInst->pNextACMInst;
915 /**************************************************************************
916 * MSACM_RemoveFromList [internal]
918 * Generates all the logic to handle driver closure / deletion
919 * Removes a driver struct to the list of open drivers.
921 static BOOL MSACM_RemoveFromList(PWINE_ACMLOCALDRIVERINST lpDrv)
923 PWINE_ACMLOCALDRIVER pDriverBase = lpDrv->pLocalDriver;
924 PWINE_ACMLOCALDRIVERINST pPrevInst;
926 /* last of this driver in list ? */
927 if (MSACM_GetNumberOfModuleRefs(pDriverBase->hModule, pDriverBase->lpDrvProc, NULL) == 1) {
928 MSACM_DRIVER_SendMessage(lpDrv, DRV_DISABLE, 0L, 0L);
929 MSACM_DRIVER_SendMessage(lpDrv, DRV_FREE, 0L, 0L);
933 if (pDriverBase->pACMInstList != lpDrv) {
934 pPrevInst = pDriverBase->pACMInstList;
935 while (pPrevInst && pPrevInst->pNextACMInst != lpDrv)
936 pPrevInst = pPrevInst->pNextACMInst;
938 ERR("requested to remove invalid instance %p\n", pPrevInst);
943 /* first driver instance on list */
944 pDriverBase->pACMInstList = lpDrv->pNextACMInst;
946 pPrevInst->pNextACMInst = lpDrv->pNextACMInst;
951 /**************************************************************************
952 * MSACM_AddToList [internal]
954 * Adds a driver struct to the list of open drivers.
955 * Generates all the logic to handle driver creation / open.
957 static BOOL MSACM_AddToList(PWINE_ACMLOCALDRIVERINST lpNewDrv, LPARAM lParam2)
959 PWINE_ACMLOCALDRIVER pDriverBase = lpNewDrv->pLocalDriver;
961 /* first of this driver in list ? */
962 if (MSACM_GetNumberOfModuleRefs(pDriverBase->hModule, pDriverBase->lpDrvProc, NULL) == 0) {
963 if (MSACM_DRIVER_SendMessage(lpNewDrv, DRV_LOAD, 0L, 0L) != DRV_SUCCESS) {
964 FIXME("DRV_LOAD failed on driver %p\n", lpNewDrv);
967 /* returned value is not checked */
968 MSACM_DRIVER_SendMessage(lpNewDrv, DRV_ENABLE, 0L, 0L);
971 lpNewDrv->pNextACMInst = NULL;
972 if (pDriverBase->pACMInstList == NULL) {
973 pDriverBase->pACMInstList = lpNewDrv;
975 PWINE_ACMLOCALDRIVERINST lpDrvInst = pDriverBase->pACMInstList;
977 while (lpDrvInst->pNextACMInst != NULL)
978 lpDrvInst = lpDrvInst->pNextACMInst;
980 lpDrvInst->pNextACMInst = lpNewDrv;
983 /* Now just open a new instance of a driver on this module */
984 lpNewDrv->dwDriverID = MSACM_DRIVER_SendMessage(lpNewDrv, DRV_OPEN, 0, lParam2);
986 if (lpNewDrv->dwDriverID == 0) {
987 FIXME("DRV_OPEN failed on driver %p\n", lpNewDrv);
988 MSACM_RemoveFromList(lpNewDrv);
994 PWINE_ACMLOCALDRIVERINST MSACM_OpenLocalDriver(PWINE_ACMLOCALDRIVER paldrv, LPARAM lParam2)
996 PWINE_ACMLOCALDRIVERINST pDrvInst;
998 pDrvInst = HeapAlloc(MSACM_hHeap, 0, sizeof(WINE_ACMLOCALDRIVERINST));
999 pDrvInst->pLocalDriver = paldrv;
1000 pDrvInst->dwDriverID = 0;
1001 pDrvInst->pNextACMInst = NULL;
1002 pDrvInst->bSession = FALSE;
1004 /* Win32 installable drivers must support a two phase opening scheme:
1005 * + first open with NULL as lParam2 (session instance),
1006 * + then do a second open with the real non null lParam2)
1008 if (MSACM_GetNumberOfModuleRefs(paldrv->hModule, paldrv->lpDrvProc, NULL) == 0 && lParam2)
1010 PWINE_ACMLOCALDRIVERINST ret;
1012 if (!MSACM_AddToList(pDrvInst, 0L))
1014 ERR("load0 failed\n");
1017 ret = MSACM_OpenLocalDriver(paldrv, lParam2);
1020 MSACM_CloseLocalDriver(pDrvInst);
1021 ERR("load1 failed\n");
1024 pDrvInst->bSession = TRUE;
1028 if (!MSACM_AddToList(pDrvInst, lParam2))
1030 ERR("load failed\n");
1034 TRACE("=> %p\n", pDrvInst);
1037 HeapFree(MSACM_hHeap, 0, pDrvInst);
1041 LRESULT MSACM_CloseLocalDriver(PWINE_ACMLOCALDRIVERINST paldrv)
1043 if (MSACM_RemoveFromList(paldrv)) {
1044 PWINE_ACMLOCALDRIVERINST lpDrv0;
1045 PWINE_ACMLOCALDRIVER pDriverBase = paldrv->pLocalDriver;
1047 MSACM_DRIVER_SendMessage(paldrv, DRV_CLOSE, 0, 0);
1048 paldrv->dwDriverID = 0;
1050 if (paldrv->bSession)
1051 ERR("should not directly close session instance (%p)\n", paldrv);
1053 /* if driver has an opened session instance, we have to close it too */
1054 if (MSACM_GetNumberOfModuleRefs(pDriverBase->hModule, pDriverBase->lpDrvProc, &lpDrv0) == 1 &&
1057 MSACM_DRIVER_SendMessage(lpDrv0, DRV_CLOSE, 0L, 0L);
1058 lpDrv0->dwDriverID = 0;
1059 MSACM_RemoveFromList(lpDrv0);
1060 HeapFree(GetProcessHeap(), 0, lpDrv0);
1063 HeapFree(MSACM_hHeap, 0, paldrv);
1066 ERR("unable to close driver instance\n");