Changeset 62974 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Aug 4, 2016 11:05:52 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchHda.cpp
r62972 r62974 3849 3849 if (pStreamCfg->enmDir == PDMAUDIODIR_IN) 3850 3850 { 3851 LogFunc(("enmRecSource=% ld\n", pStreamCfg->DestSource.Source));3851 LogFunc(("enmRecSource=%d\n", pStreamCfg->DestSource.Source)); 3852 3852 3853 3853 switch (pStreamCfg->DestSource.Source) … … 3868 3868 else if (pStreamCfg->enmDir == PDMAUDIODIR_OUT) 3869 3869 { 3870 LogFunc(("enmPlaybackDest=% ld\n", pStreamCfg->DestSource.Dest));3870 LogFunc(("enmPlaybackDest=%d\n", pStreamCfg->DestSource.Dest)); 3871 3871 3872 3872 switch (pStreamCfg->DestSource.Dest) … … 3949 3949 3950 3950 AssertPtr(pSink->pMixSink); 3951 LogFlowFunc(("Sink=%s, enmMixerCtl=% ld\n", pSink->pMixSink->pszName, enmMixerCtl));3951 LogFlowFunc(("Sink=%s, enmMixerCtl=%d\n", pSink->pMixSink->pszName, enmMixerCtl)); 3952 3952 } 3953 3953 else … … 4011 4011 #endif 4012 4012 default: 4013 AssertMsgFailed(("Mixer control % ld not implemented\n", enmMixerCtl));4013 AssertMsgFailed(("Mixer control %d not implemented\n", enmMixerCtl)); 4014 4014 break; 4015 4015 } … … 4030 4030 rc = VERR_NOT_FOUND; 4031 4031 4032 LogFlowFunc(("enmMixerCtl=% ld, rc=%Rrc\n", enmMixerCtl, rc));4032 LogFlowFunc(("enmMixerCtl=%d, rc=%Rrc\n", enmMixerCtl, rc)); 4033 4033 return rc; 4034 4034 } … … 4043 4043 * @param uChannel Channel to set. Only valid if a valid SD stream number is specified. 4044 4044 */ 4045 static DECLCALLBACK(int) hdaMixerSetStream(PHDASTATE pThis, 4046 PDMAUDIOMIXERCTL enmMixerCtl, uint8_t uSD, uint8_t uChannel) 4045 static DECLCALLBACK(int) hdaMixerSetStream(PHDASTATE pThis, PDMAUDIOMIXERCTL enmMixerCtl, uint8_t uSD, uint8_t uChannel) 4047 4046 { 4048 4047 LogFlowFunc(("enmMixerCtl=%RU32, uSD=%RU8, uChannel=%RU8\n", enmMixerCtl, uSD, uChannel)); … … 4050 4049 if (uSD == 0) /* Stream number 0 is reserved. */ 4051 4050 { 4052 LogFlowFunc(("Invalid SDn (%RU8) number for mixer control % ld, ignoring\n", uSD, enmMixerCtl));4051 LogFlowFunc(("Invalid SDn (%RU8) number for mixer control %d, ignoring\n", uSD, enmMixerCtl)); 4053 4052 return VINF_SUCCESS; 4054 4053 }
Note:
See TracChangeset
for help on using the changeset viewer.