Sto provando a monitorare nuove sessioni audio tramite l'interfaccia COM di IAudioSessionManager2 di Windows 7 (accoppiato con IAudioSessionNotification). Attualmente, IAudioSessionNotification :: OnSessionCreated() non viene mai chiamato e ho esaurito le idee sul perché.Notifiche di IAudioSessionManager2 non inviate
Codice registrazione personalizzato IAudioSessionNotification:
#define SAFE_RELEASE(comObj) \
if(comObj != NULL) \
{ (comObj)->Release(); comObj = NULL; }
BOOL success = false;
HRESULT res;
IClassFactory* pFactory;
IMMDevice* pDevice;
IMMDeviceEnumerator* pEnumerator;
SESSION_LISTENER = NULL;
SESSION = NULL;
res = CoInitialize(NULL);
if(res != S_OK && res != S_FALSE)
return false;
res = CoGetClassObject(CLSID_CustomAudioFactory, CLSCTX_ALL, NULL, __uuidof(IClassFactory), (void**)&pFactory);
if(res != S_OK) goto Exit;
res = pFactory->CreateInstance(NULL, CLSID_CustomAudioNotifications, (void**)&SESSION_LISTENER);
if(res != S_OK) goto Exit;
res = CoCreateInstance(__uuidof(MMDeviceEnumerator), NULL, CLSCTX_ALL, __uuidof(IMMDeviceEnumerator), (void**)&pEnumerator);
if(res != S_OK) goto Exit;
res = pEnumerator->GetDefaultAudioEndpoint(eRender, eMultimedia, &pDevice);
if(res != S_OK) goto Exit;
res = pDevice->Activate(__uuidof(IAudioSessionManager2), CLSCTX_ALL, NULL, (void**)&SESSION);
if(res != S_OK) goto Exit;
res = SESSION->RegisterSessionNotification(SESSION_LISTENER);
if(res != S_OK) goto Exit;
success = true;
Exit:
SAFE_RELEASE(pFactory);
SAFE_RELEASE(pEnumerator);
SAFE_RELEASE(pDevice);
if(!success)
{
SAFE_RELEASE(SESSION_LISTENER);
SAFE_RELEASE(SESSION);
}
CustomAudioNotifications dichiarazione:
class CustomAudioNotifications : public IAudioSessionNotification
{
public:
//Constructors
CustomAudioNotifications() { InterlockedIncrement(&g_notifyCount); m_listener = NULL; }
~CustomAudioNotifications() { InterlockedDecrement(&g_notifyCount); SAFE_RELEASE(m_listener); }
//IUnknown interface
HRESULT __stdcall QueryInterface(
REFIID riid ,
void **ppObj);
ULONG __stdcall AddRef();
ULONG __stdcall Release();
//Notification
HRESULT __stdcall OnSessionCreated(IAudioSessionControl *NewSession);
private:
LONG m_nRefCount;
};
OnSessionCreated invia solo un messaggio a una finestra ogni volta che si crea una sessione per il momento; che non succede mai. Nel caso in cui le mie supposizioni siano totalmente prive di base, mi aspetto una notifica ogni volta che un'applicazione che deve ancora riprodurre audio inizia a farlo; quindi avviare VLC con un file video dovrebbe comportare immediatamente un avviso, mentre visitare Pandora tramite un browser Web attiverà anche tale avviso.
Il debug mostra che tutti i valori restituiti sono S_OK.
La mia esperienza di COM è piuttosto limitata, quindi indicando i "WTF" generali? sarebbe anche apprezzato.
CustomAudioNotifications :: QueryInterface chiamato? Restituisce S_OK? – sharptooth
Fuori dalla costruzione dell'oggetto tramite la sua fabbrica; No, QueryInterface non viene chiamato. Almeno, il punto di interruzione non è mai scattato. –