Changeset 89442 in vbox
- Timestamp:
- Jun 1, 2021 8:13:51 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/audio/vkat.cpp
r89441 r89442 1647 1647 1648 1648 /** 1649 * Worker for audioTestPlayOne .1649 * Worker for audioTestPlayOne implementing the play loop. 1650 1650 */ 1651 1651 static RTEXITCODE audioTestPlayOneInner(PAUDIOTESTDRVMIXSTREAM pMix, PAUDIOTESTWAVEFILE pWaveFile, … … 1790 1790 if (RT_SUCCESS(rc)) 1791 1791 { 1792 /* 1793 * Create a mixer wrapper. This is just a thin wrapper if fWithMixer 1794 * is false, otherwise it's doing mixing, resampling and recoding. 1795 */ 1792 1796 AUDIOTESTDRVMIXSTREAM Mix; 1793 1797 rc = AudioTestMixStreamInit(&Mix, &DrvStack, pStream, fWithMixer ? &WaveFile.Props : NULL, 100 /*ms*/); … … 1798 1802 pStream->cbBackend, fWithMixer ? " mixed" : ""); 1799 1803 1804 /* 1805 * Enable the stream and start playing. 1806 */ 1800 1807 rc = audioTestDriverStackStreamEnable(&DrvStack, pStream); 1801 1808 if (RT_SUCCESS(rc)) … … 1804 1811 rcExit = RTMsgErrorExitFailure("Enabling the output stream failed: %Rrc", rc); 1805 1812 1813 /* 1814 * Clean up. 1815 */ 1806 1816 AudioTestMixStreamTerm(&Mix); 1807 1817 }
Note:
See TracChangeset
for help on using the changeset viewer.