Changeset 61345 in vbox for trunk/src/VBox
- Timestamp:
- May 31, 2016 3:59:11 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107640
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostDSound.cpp
r61321 r61345 2230 2230 { 2231 2231 PDSOUNDSTREAMIN pDSoundStream = (PDSOUNDSTREAMIN)pStream; 2232 strmSts |= pDSoundStream->fEnabled ? PDMAUDIOSTRMSTS_FLAG_ENABLED : 0; 2232 if (pDSoundStream->fEnabled) 2233 strmSts |= PDMAUDIOSTRMSTS_FLAG_ENABLED | PDMAUDIOSTRMSTS_FLAG_DATA_READABLE; 2233 2234 } 2234 2235 else 2235 2236 { 2236 2237 PDSOUNDSTREAMOUT pDSoundStream = (PDSOUNDSTREAMOUT)pStream; 2237 strmSts |= pDSoundStream->fEnabled ? PDMAUDIOSTRMSTS_FLAG_ENABLED : 0; 2238 if (pDSoundStream->fEnabled) 2239 strmSts |= PDMAUDIOSTRMSTS_FLAG_ENABLED | PDMAUDIOSTRMSTS_FLAG_DATA_WRITABLE; 2238 2240 } 2239 2241
Note:
See TracChangeset
for help on using the changeset viewer.