Changeset 99415 in vbox
- Timestamp:
- Apr 17, 2023 8:36:39 AM (18 months ago)
- Location:
- trunk/src/VBox/Devices/Audio
- Files:
-
- 3 edited
-
AudioMixer.cpp (modified) (1 diff)
-
AudioMixer.h (modified) (1 diff)
-
DevIchAc97.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioMixer.cpp
r99312 r99415 2195 2195 2196 2196 /** 2197 * Checks the caller is the owner of the mixer sink's critical section.2197 * Checks if the caller is the owner of the mixer sink's critical section. 2198 2198 * 2199 2199 * @returns \c true if the caller is the lock owner, \c false if not. 2200 2200 * @param pSink The mixer sink to check. 2201 2201 */ 2202 bool AudioMixerSinkLockIsOwne d(PAUDMIXSINK pSink)2202 bool AudioMixerSinkLockIsOwner(PAUDMIXSINK pSink) 2203 2203 { 2204 2204 return RTCritSectIsOwner(&pSink->CritSect); -
trunk/src/VBox/Devices/Audio/AudioMixer.h
r99312 r99415 328 328 uint64_t AudioMixerSinkTransferToCircBuf(PAUDMIXSINK pSink, PRTCIRCBUF pCircBuf, uint64_t offStream, 329 329 uint32_t idStream, PAUDIOHLPFILE pDbgFile); 330 bool AudioMixerSinkLockIsOwne d(PAUDMIXSINK pSink);330 bool AudioMixerSinkLockIsOwner(PAUDMIXSINK pSink); 331 331 int AudioMixerSinkLock(PAUDMIXSINK pSink); 332 332 int AudioMixerSinkTryLock(PAUDMIXSINK pSink); -
trunk/src/VBox/Devices/Audio/DevIchAc97.cpp
r99414 r99415 2033 2033 Assert(PDMDevHlpCritSectIsOwner(pDevIns, &pThis->CritSect)); 2034 2034 Assert(RTCritSectIsOwned(&pStreamCC->State.CritSect)); 2035 Assert(AudioMixerSinkLockIsOwne d(pMixSink));2035 Assert(AudioMixerSinkLockIsOwner(pMixSink)); 2036 2036 2037 2037 /*
Note:
See TracChangeset
for help on using the changeset viewer.

