Changeset 64049 in vbox for trunk/src/VBox/Devices/Audio/DevIchHda.cpp
- Timestamp:
- Sep 27, 2016 1:54:21 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchHda.cpp
r63718 r64049 1816 1816 if (RT_FAILURE(rc)) 1817 1817 { 1818 LogF lowFunc(("Failed with rc=%Rrc\n", rc));1818 LogFunc(("Failed with rc=%Rrc\n", rc)); 1819 1819 return rc; 1820 1820 } … … 2415 2415 { 2416 2416 Assert(!fReset && !fInReset); 2417 LogFunc(("[SD%RU8]: fRun=%RTbool\n", pStream->u8SD, fRun));2417 LogFunc(("[SD%RU8]: State changed (fRun=%RTbool)\n", pStream->u8SD, fRun)); 2418 2418 2419 2419 hdaStreamSetActive(pThis, pStream, fRun); … … 3586 3586 AssertRC(rc); 3587 3587 3588 #ifdef HDA_DEBUG_DUMP_PCM_DATA 3589 RTFILE fh; 3590 RTFileOpen(&fh, HDA_DEBUG_DUMP_PCM_DATA_PATH "hdaReadAudio-hda.pcm", 3591 RTFILE_O_OPEN_CREATE | RTFILE_O_APPEND | RTFILE_O_WRITE | RTFILE_O_DENY_NONE); 3592 RTFileWrite(fh, pBDLE->State.au8FIFO, cbRead, NULL); 3593 RTFileClose(fh); 3594 #endif 3588 3595 if (pBDLE->State.cbBelowFIFOW + cbRead > hdaStreamGetFIFOW(pThis, pStream)) 3589 3596 {
Note:
See TracChangeset
for help on using the changeset viewer.