Changeset 89304 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- May 26, 2021 9:29:29 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144651
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioMixer.cpp
r89303 r89304 482 482 * Mixer Sink implementation. * 483 483 *********************************************************************************************************************************/ 484 485 #ifdef VBOX_STRICT486 /**487 * Checks if @a pNeedle is in the list of streams associated with @a pSink.488 * @returns true / false.489 */490 static bool audioMixerSinkIsStreamInList(PAUDMIXSINK pSink, PAUDMIXSTREAM pNeedle)491 {492 PAUDMIXSTREAM pStream;493 RTListForEach(&pSink->lstStreams, pStream, AUDMIXSTREAM, Node)494 {495 if (pStream == pNeedle)496 return true;497 }498 return false;499 }500 #endif /* VBOX_STRICT */501 484 502 485 /**
Note:
See TracChangeset
for help on using the changeset viewer.