Changeset 92452 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Nov 16, 2021 10:43:51 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/audio/vkatCommon.cpp
r92448 r92452 814 814 case AUDIOTESTSTATE_POST: 815 815 { 816 bool fGoToNextStage = false; 817 816 818 if ( AudioTestBeaconGetSize(&Beacon) 817 819 && !AudioTestBeaconIsComplete(&Beacon)) … … 844 846 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, "Detected %s beacon\n", 845 847 AudioTestBeaconTypeGetName(Beacon.enmType)); 846 847 if (enmState == AUDIOTESTSTATE_PRE) 848 enmState = AUDIOTESTSTATE_RUN; 849 else if (enmState == AUDIOTESTSTATE_POST) 850 enmState = AUDIOTESTSTATE_DONE; 848 fGoToNextStage = true; 851 849 } 850 } 851 else 852 fGoToNextStage = true; 853 854 if (fGoToNextStage) 855 { 856 if (enmState == AUDIOTESTSTATE_PRE) 857 enmState = AUDIOTESTSTATE_RUN; 858 else if (enmState == AUDIOTESTSTATE_POST) 859 enmState = AUDIOTESTSTATE_DONE; 852 860 } 853 861 break;
Note:
See TracChangeset
for help on using the changeset viewer.