Changeset 74877 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Oct 17, 2018 9:12:16 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioMixer.cpp
r74057 r74877 1863 1863 break; 1864 1864 } 1865 else if (rc != VERR_AUDIO_STREAM_NOT_READY) 1865 else if (rc == VERR_AUDIO_STREAM_NOT_READY) 1866 { 1867 /* Stream is not enabled, just skip. */ 1868 rc = VINF_SUCCESS; 1869 } 1870 else 1866 1871 LogRel2(("Mixer: Writing to mixer stream '%s' (sink '%s') failed, rc=%Rrc\n", 1867 1872 pMixStream->pszName, pSink->pszName, rc)); 1868 1873 1869 LogFunc(("[%s] Failed writing to stream '%s': %Rrc\n", pSink->pszName, pMixStream->pszName, rc)); 1874 if (RT_FAILURE(rc)) 1875 LogFunc(("[%s] Failed writing to stream '%s': %Rrc\n", pSink->pszName, pMixStream->pszName, rc)); 1870 1876 } 1871 1877 }
Note:
See TracChangeset
for help on using the changeset viewer.