Changeset 64866 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Dec 14, 2016 1:39:25 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 112268
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r64568 r64866 768 768 AssertPtrReturn(pStream, VERR_INVALID_POINTER); 769 769 AssertPtrReturn(pvBuf, VERR_INVALID_POINTER); 770 AssertReturn(cbBuf, VERR_INVALID_P OINTER);770 AssertReturn(cbBuf, VERR_INVALID_PARAMETER); 771 771 /* pcbWritten is optional. */ 772 772 … … 805 805 806 806 PPDMAUDIOSTREAM pGstStream = pHstStream->pPair; 807 AssertPtr(pGstStream); 807 808 808 809 AssertMsg(pGstStream->fStatus & PDMAUDIOSTRMSTS_FLAG_ENABLED, … … 815 816 LogRel2(("Audio: Guest stream '%s' full, expect stuttering audio output\n", pGstStream->szName)); 816 817 #ifdef DEBUG_andy 817 AssertMsgFailed(("%s: Guest stream full \n", pGstStream->szName));818 AssertMsgFailed(("%s: Guest stream full: cbBuf=%RU32\n", pGstStream->szName, cbBuf)); 818 819 #endif 819 820 break; … … 848 849 { 849 850 LogRel2(("Audio: Lost audio samples (%RU32) due to full host stream '%s', expect stuttering audio output\n", 850 csWritten - csMixed, p GstStream->szName));851 csWritten - csMixed, pHstStream->szName)); 851 852 } 852 853
Note:
See TracChangeset
for help on using the changeset viewer.