- Timestamp:
- Oct 1, 2021 8:48:53 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 147225
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioTest.cpp
r91530 r91531 2160 2160 AssertRCReturn(rc, rc); 2161 2161 2162 double dbRatio ;2162 double dbRatio = 0.0; 2163 2163 rc = audioTestFileNormalizePCM(pObj->File.hFile, pProps, cbSize, dbNormalizePercent, hFileDst, &dbRatio); 2164 2164 if (RT_SUCCESS(rc)) 2165 2165 { 2166 int rc2 = audioTestErrorDescAddInfo(pVerJob->pErr, pVerJob->idxTest, "Normalized '%s' (ratio is ~%RU64%%)\n", pObj->szName, dbRatio); 2166 int rc2 = audioTestErrorDescAddInfo(pVerJob->pErr, pVerJob->idxTest, "Normalized '%s' (ratio is %u.%02u%%)\n", 2167 pObj->szName, (unsigned)dbRatio, (unsigned)(dbRatio * 100) % 100); 2167 2168 AssertRC(rc2); 2168 2169 }
Note:
See TracChangeset
for help on using the changeset viewer.