- Timestamp:
- Sep 30, 2021 8:36:00 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 147176
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioTest.cpp
r91178 r91492 2024 2024 if (cDiffs) 2025 2025 { 2026 int rc2 = audioTestErrorDescAddInfo(pVerJob->pErr, pVerJob->idxTest, "Chunks differ: A [%RU64-%RU64] vs. B [%RU64-%RU64] (%RU64 bytes, %RU64ms)", 2027 pCmpA->offStart + offLastDiff, pCmpA->offStart + offCur, 2028 pCmpB->offStart + offLastDiff, pCmpB->offStart + offCur, offCur - offLastDiff, 2029 PDMAudioPropsBytesToMilli(&pToneParms->Props, offCur - offLastDiff)); 2026 int rc2 = audioTestErrorDescAddInfo(pVerJob->pErr, pVerJob->idxTest, "Chunks differ: A @ %#x vs. B @ %#x [%08RU64-%08RU64] (%RU64 bytes, %RU64ms)", 2027 pCmpA->offStart, pCmpB->offStart, offLastDiff, offCur, 2028 offCur - offLastDiff, PDMAudioPropsBytesToMilli(&pToneParms->Props, offCur - offLastDiff)); 2030 2029 AssertRC(rc2); 2031 2030 } … … 2165 2164 cbSizeB); 2166 2165 2167 int rc2 = audioTestErrorDescAddInfo(pVerJob->pErr, pVerJob->idxTest, "File A ('%s'): cbOff=%RU64cbSize=%RU64, cbFileSize=%RU64\n",2166 int rc2 = audioTestErrorDescAddInfo(pVerJob->pErr, pVerJob->idxTest, "File A ('%s'): uOff=%#x, cbSize=%RU64, cbFileSize=%RU64\n", 2168 2167 ObjA.szName, FileA.offStart, FileA.cbSize, cbSizeA); 2169 2168 AssertRC(rc2); 2170 2169 2171 rc = audioTestErrorDescAddInfo(pVerJob->pErr, pVerJob->idxTest, "File B ('%s'): cbOff=%RU64, cbSize=%RU64, cbFileSize=%RU64\n",2170 rc = audioTestErrorDescAddInfo(pVerJob->pErr, pVerJob->idxTest, "File B ('%s'): uOff=%#x, cbSize=%RU64, cbFileSize=%RU64\n", 2172 2171 ObjB.szName, FileB.offStart, FileB.cbSize, cbSizeB); 2173 2172 AssertRC(rc2); … … 2178 2177 { 2179 2178 rc2 = audioTestErrorDescAddError(pVerJob->pErr, pVerJob->idxTest, 2180 "Files '%s' and '%s' have too many different chunks ( %RU32 vs.%RU32)",2179 "Files '%s' and '%s' have too many different chunks (got %RU32, expected %RU32)", 2181 2180 ObjA.szName, ObjB.szName, cDiffs, pVerJob->Opts.cMaxDiff); 2182 2181 AssertRC(rc2);
Note:
See TracChangeset
for help on using the changeset viewer.