Changeset 92030 in vbox
- Timestamp:
- Oct 25, 2021 1:09:15 PM (3 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostAudioAlsa.cpp
r92016 r92030 133 133 134 134 int rc; 135 LogRel(("ALSA: Calling snd_pcm_close() ...\n"));136 135 int rc2 = snd_pcm_close(*phPCM); 137 LogRel(("ALSA: Calling snd_pcm_close() done\n"));138 136 if (rc2 == 0) 139 137 { … … 696 694 PDMAudioPropsChannels(&pCfgAcq->Props), enmAlsaFmt)); 697 695 698 #if 0699 696 /* 700 697 * Channel config (not fatal). … … 706 703 LogRel2(("ALSA: snd_pcm_set_chmap failed: %s (%d)\n", snd_strerror(err), err)); 707 704 } 708 #else709 LogRel(("ALSA: Skipping setting channel map ...\n"));710 #endif711 705 712 706 return 0; -
trunk/src/VBox/ValidationKit/utils/audio/vkatCommon.cpp
r91940 r92030 697 697 if (RT_SUCCESS(rc)) 698 698 { 699 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, " Skipping draining stream!\n");700 //rc = AudioTestMixStreamDrain(&pStream->Mix, true /*fSync*/);699 RTTestPrintf(g_hTest, RTTESTLVL_ALWAYS, "Draining stream ...\n"); 700 rc = AudioTestMixStreamDrain(&pStream->Mix, true /*fSync*/); 701 701 } 702 702 }
Note:
See TracChangeset
for help on using the changeset viewer.