Changeset 104523 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- May 6, 2024 4:28:42 PM (12 months ago)
- svn:sync-xref-src-repo-rev:
- 163048
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioMixer.cpp
r104499 r104523 312 312 LogFlowFunc(("[%s] fMuted=%RTbool auChannels=%.*Rhxs => fMuted=%RTbool auChannels=%.*Rhxs\n", pMixer->pszName, 313 313 pMixer->VolMaster.fMuted, sizeof(pMixer->VolMaster.auChannels), pMixer->VolMaster.auChannels, 314 pVol->fMuted, sizeof(pVol->auChannels), pVol->auChannels 314 pVol->fMuted, sizeof(pVol->auChannels), pVol->auChannels)); 315 315 memcpy(&pMixer->VolMaster, pVol, sizeof(PDMAUDIOVOLUME)); 316 317 LogRelMax(256, ("Audio Mixer: %s master volume of '%s' -- channel volumes: %.*Rhxs\n", 318 pMixer->VolMaster.fMuted ? "MUTING" : "Setting", 319 pMixer->pszName, sizeof(pMixer->VolMaster.auChannels), pMixer->VolMaster.auChannels)); 316 320 317 321 /* … … 1109 1113 pSink->VolumeCombined.fMuted, sizeof(pSink->VolumeCombined.auChannels), pSink->VolumeCombined.auChannels )); 1110 1114 1115 LogRelMax(256, ("Audio Mixer: %s sink '%s/%s' -- channel volumes: %.*Rhxs\n", 1116 pSink->VolumeCombined.fMuted ? "MUTING" : "Setting", 1117 pSink->pParent->pszName, pSink->pszName, 1118 sizeof(pSink->VolumeCombined.auChannels), pSink->VolumeCombined.auChannels)); 1119 1111 1120 AudioMixBufSetVolume(&pSink->MixBuf, &pSink->VolumeCombined); 1112 1121 return VINF_SUCCESS; … … 1131 1140 1132 1141 memcpy(&pSink->Volume, pVol, sizeof(PDMAUDIOVOLUME)); 1133 1134 LogRel2(("Audio Mixer: Setting volume of sink '%s' to fMuted=%RTbool auChannels=%.*Rhxs\n",1135 pSink->pszName, pVol->fMuted, sizeof(pVol->auChannels), pVol->auChannels));1136 1142 1137 1143 Assert(pSink->pParent);
Note:
See TracChangeset
for help on using the changeset viewer.