Changeset 92047 in vbox for trunk/src/VBox/ValidationKit/utils
- Timestamp:
- Oct 25, 2021 4:20:36 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 147856
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/audio/vkatCommon.cpp
r92030 r92047 584 584 if (cbCanWrite) 585 585 { 586 if (g_uVerbosity )586 if (g_uVerbosity >= 3) 587 587 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, "Stream is writable with %RU32ms (%RU32 bytes)\n", 588 588 PDMAudioPropsBytesToMilli(pMix->pProps, cbCanWrite), cbCanWrite); … … 787 787 if (cbCanRead) 788 788 { 789 if (g_uVerbosity )789 if (g_uVerbosity >= 3) 790 790 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, "Stream is readable with %RU32ms (%RU32 bytes)\n", 791 791 PDMAudioPropsBytesToMilli(pMix->pProps, cbCanRead), cbCanRead); … … 812 812 RTMSINTERVAL const msSleep = RT_MIN(RT_MAX(1, pStream->Cfg.Device.cMsSchedulingHint), 256); 813 813 814 if (!nsLastMsgCantRead || nsNow - nsLastMsgCantRead > RT_NS_10SEC) /* Don't spam the output too much. */ 814 if ( g_uVerbosity >= 3 815 && (!nsLastMsgCantRead || nsNow - nsLastMsgCantRead > RT_NS_10SEC)) /* Don't spam the output too much. */ 815 816 { 816 817 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, "Waiting %RU32ms for stream to be readable again ...\n", msSleep);
Note:
See TracChangeset
for help on using the changeset viewer.