Changeset 64868 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Dec 14, 2016 1:40:27 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 112270
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioMixer.cpp
r64569 r64868 330 330 return VERR_NOT_FOUND; 331 331 332 AssertMsgReturn(pSink->pParent == pMixer, (" Sink '%s' is not part of mixer '%s'\n",332 AssertMsgReturn(pSink->pParent == pMixer, ("%s: Is not part of mixer '%s'\n", 333 333 pSink->pszName, pMixer->pszName), VERR_NOT_FOUND); 334 334 … … 769 769 AssertPtrReturn(pSink, 0); 770 770 771 AssertMsg(pSink->enmDir == AUDMIXSINKDIR_INPUT, (" Can't read from a non-input sink\n"));771 AssertMsg(pSink->enmDir == AUDMIXSINKDIR_INPUT, ("%s: Can't read from a non-input sink\n", pSink->pszName)); 772 772 773 773 int rc = RTCritSectEnter(&pSink->CritSect); … … 813 813 AssertPtrReturn(pSink, 0); 814 814 815 AssertMsg(pSink->enmDir == AUDMIXSINKDIR_OUTPUT, (" Can't write to a non-output sink\n"));815 AssertMsg(pSink->enmDir == AUDMIXSINKDIR_OUTPUT, ("%s: Can't write to a non-output sink\n", pSink->pszName)); 816 816 817 817 int rc = RTCritSectEnter(&pSink->CritSect); … … 1535 1535 return rc; 1536 1536 1537 AssertMsg(pSink->fStatus & AUDMIXSINK_STS_RUNNING, ("Can't write to a sink which is not running (anymore)\n")); 1538 AssertMsg(pSink->enmDir == AUDMIXSINKDIR_OUTPUT, ("Can't write to a sink which is not an output sink\n")); 1537 AssertMsg(pSink->fStatus & AUDMIXSINK_STS_RUNNING, ("%s: Can't write to a sink which is not running (anymore)\n", 1538 pSink->pszName)); 1539 AssertMsg(pSink->enmDir == AUDMIXSINKDIR_OUTPUT, ("%s: Can't write to a sink which is not an output sink\n", 1540 pSink->pszName)); 1539 1541 1540 1542 Log3Func(("[%s] enmOp=%d, cbBuf=%RU32\n", pSink->pszName, enmOp, cbBuf));
Note:
See TracChangeset
for help on using the changeset viewer.