Changeset 89023 in vbox
- Timestamp:
- May 12, 2021 10:28:14 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144362
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostAudioCoreAudio.cpp
r89022 r89023 4 4 * 5 5 * For relevant Apple documentation, here are some starters: 6 * - http://developer.apple.com/mac/library/technotes/tn2004/tn2097.html 7 * - http://developer.apple.com/mac/library/technotes/tn2002/tn2091.html 6 * - TN2097: Playing a sound file using the Default Output Audio Unit 7 * https://developer.apple.com/library/archive/technotes/tn2097/ 8 * - TN2091: Device input using the HAL Output Audio Unit 9 * https://developer.apple.com/library/archive/technotes/tn2091/ 8 10 * - http://developer.apple.com/mac/library/qa/qa2007/qa1533.html 9 11 * - http://developer.apple.com/mac/library/qa/qa2001/qa1317.html … … 170 172 /** List node for the device's stream list. */ 171 173 RTLISTNODE Node; 172 /** Pointer to driver instance this stream is bound to. */173 PDRVHOSTCOREAUDIO pDrv;174 174 /** The stream's thread handle for maintaining the audio queue. */ 175 175 RTTHREAD hThread; … … 1696 1696 * Basic structure init. 1697 1697 */ 1698 pStreamCA->pDrv = pThis;1699 1698 pStreamCA->hThread = NIL_RTTHREAD; 1700 1699 pStreamCA->fRun = false; … … 1852 1851 1853 1852 pStreamCA->Unit.pDevice = NULL; 1854 pStreamCA->pDrv = NULL;1855 1853 1856 1854 RTCritSectDelete(&pStreamCA->CritSect);
Note:
See TracChangeset
for help on using the changeset viewer.