Changeset 88848 in vbox for trunk/src/VBox/Devices
- Timestamp:
- May 3, 2021 7:45:25 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144182
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostAudioPulseAudio.cpp
r88819 r88848 1823 1823 1824 1824 /** 1825 * @interface_method_impl{PDMDRVREG,pfnPowerOff} 1826 */ 1827 static DECLCALLBACK(void) drvHostAudioPaPowerOff(PPDMDRVINS pDrvIns) 1828 { 1825 * Destructs a PulseAudio Audio driver instance. 1826 * 1827 * @copydoc FNPDMDRVDESTRUCT 1828 */ 1829 static DECLCALLBACK(void) drvHostAudioPaDestruct(PPDMDRVINS pDrvIns) 1830 { 1831 PDMDRV_CHECK_VERSIONS_RETURN_VOID(pDrvIns); 1829 1832 PDRVHOSTPULSEAUDIO pThis = PDMINS_2_DATA(pDrvIns, PDRVHOSTPULSEAUDIO); 1830 1833 LogFlowFuncEnter(); … … 1846 1849 } 1847 1850 1848 LogFlowFuncLeave();1849 }1850 1851 1852 /**1853 * Destructs a PulseAudio Audio driver instance.1854 *1855 * @copydoc FNPDMDRVDESTRUCT1856 */1857 static DECLCALLBACK(void) drvHostAudioPaDestruct(PPDMDRVINS pDrvIns)1858 {1859 PDMDRV_CHECK_VERSIONS_RETURN_VOID(pDrvIns);1860 LogFlowFuncEnter();1861 drvHostAudioPaPowerOff(pDrvIns);1862 1851 LogFlowFuncLeave(); 1863 1852 } … … 1900 1889 RT_NOREF(pCfg, fFlags); 1901 1890 PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns); 1902 AssertPtrReturn(pDrvIns, VERR_INVALID_POINTER);1903 1904 1891 PDRVHOSTPULSEAUDIO pThis = PDMINS_2_DATA(pDrvIns, PDRVHOSTPULSEAUDIO); 1905 1892 LogRel(("Audio: Initializing PulseAudio driver\n")); … … 2068 2055 NULL, 2069 2056 /* pfnPowerOff */ 2070 drvHostAudioPaPowerOff,2057 NULL, 2071 2058 /* pfnSoftReset */ 2072 2059 NULL,
Note:
See TracChangeset
for help on using the changeset viewer.