Changeset 87969 in vbox for trunk/src/VBox
- Timestamp:
- Mar 5, 2021 10:46:57 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 143077
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/HDAStream.cpp
r87965 r87969 268 268 if (RT_FAILURE(rc)) 269 269 { 270 LogRel (("HDA: Warning: Format 0x%x for stream #%RU8 not supported\n", HDA_STREAM_REG(pThis, FMT, uSD), uSD));270 LogRelMax(32, ("HDA: Warning: Format 0x%x for stream #%RU8 not supported\n", HDA_STREAM_REG(pThis, FMT, uSD), uSD)); 271 271 return rc; 272 272 } … … 301 301 * Note: This also involves dealing with surround setups the guest might has set up for us. 302 302 */ 303 LogRel (("HDA: Warning: More than stereo (2) channels are not supported (%RU8 requested), "304 "falling back to stereo channels for stream #%RU8\n", Props.cChannels, uSD));303 LogRelMax(32, ("HDA: Warning: More than stereo (2) channels are not supported (%RU8 requested), " 304 "falling back to stereo channels for stream #%RU8\n", Props.cChannels, uSD)); 305 305 Props.cChannels = 2; 306 306 Props.cShift = PDMAUDIOPCMPROPS_MAKE_SHIFT_PARMS(Props.cbSample, Props.cChannels); … … 557 557 558 558 if (uTransferHz > 400) /* Anything above 400 Hz looks fishy -- tell the user. */ 559 LogRel(("HDA: Warning: Calculated transfer Hz rate for stream #%RU8 looks incorrect (%u), please re-run with audio debug mode and report a bug\n", 560 uSD, uTransferHz)); 559 LogRelMax(32, ("HDA: Warning: Calculated transfer Hz rate for stream #%RU8 looks incorrect (%u), " 560 "please re-run with audio debug mode and report a bug\n", 561 uSD, uTransferHz)); 561 562 562 563 /* Set I/O scheduling hint for the backends. */ … … 697 698 698 699 if (RT_FAILURE(rc)) 699 LogRel (("HDA: Initializing stream #%RU8 failed with %Rrc\n", uSD, rc));700 LogRelMax(32, ("HDA: Initializing stream #%RU8 failed with %Rrc\n", uSD, rc)); 700 701 701 702 #ifdef VBOX_WITH_DTRACE
Note:
See TracChangeset
for help on using the changeset viewer.