Changeset 88820 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- May 3, 2021 10:35:05 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostAudioCoreAudio.cpp
r88819 r88820 109 109 #ifdef VBOX_WITH_AUDIO_CALLBACKS 110 110 /** Upwards notification interface. */ 111 PPDMI AUDIONOTIFYFROMHOST pIAudioNotifyFromHost;111 PPDMIHOSTAUDIOPORT pIHostAudioPort; 112 112 #endif 113 113 /** Indicates whether we've registered default input device change listener. */ … … 1070 1070 #ifdef VBOX_WITH_AUDIO_CALLBACKS 1071 1071 /* Notify the driver/device above us about possible changes in devices. */ 1072 if (pThis->pI AudioNotifyFromHost)1073 pThis->pI AudioNotifyFromHost->pfnNotifyDevicesChanged(pThis->pIAudioNotifyFromHost);1072 if (pThis->pIHostAudioPort) 1073 pThis->pIHostAudioPort->pfnNotifyDevicesChanged(pThis->pIHostAudioPort); 1074 1074 #endif 1075 1075 … … 2599 2599 * Query the notification interface from the driver/device above us. 2600 2600 */ 2601 pThis->pI AudioNotifyFromHost = PDMIBASE_QUERY_INTERFACE(pDrvIns->pUpBase, PDMIAUDIONOTIFYFROMHOST);2602 Assert(pThis->pI AudioNotifyFromHost);2601 pThis->pIHostAudioPort = PDMIBASE_QUERY_INTERFACE(pDrvIns->pUpBase, PDMIHOSTAUDIOPORT); 2602 Assert(pThis->pIHostAudioPort); 2603 2603 #endif 2604 2604
Note:
See TracChangeset
for help on using the changeset viewer.