Changeset 61321 in vbox
- Timestamp:
- May 31, 2016 8:46:42 AM (9 years ago)
- Location:
- trunk/src/VBox/Devices/Audio
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostCoreAudio.cpp
r61167 r61321 2169 2169 2170 2170 return (PDMAUDIOSTRMSTS_FLAG_INITIALIZED | PDMAUDIOSTRMSTS_FLAG_ENABLED); 2171 } 2172 2173 static DECLCALLBACK(int) drvHostCoreAudioStreamIterate(PPDMIHOSTAUDIO pInterface, PPDMAUDIOSTREAM pStream) 2174 { 2175 AssertPtrReturn(pInterface, VERR_INVALID_POINTER); 2176 AssertPtrReturn(pStream, VERR_INVALID_POINTER); 2177 2178 LogFlowFuncEnter(); 2179 2180 /* Nothing to do here for Core Audio. */ 2181 return VINF_SUCCESS; 2171 2182 } 2172 2183 -
trunk/src/VBox/Devices/Audio/DrvHostDSound.cpp
r61168 r61321 2239 2239 2240 2240 return strmSts; 2241 } 2242 2243 static DECLCALLBACK(int) drvHostDSoundStreamIterate(PPDMIHOSTAUDIO pInterface, PPDMAUDIOSTREAM pStream) 2244 { 2245 AssertPtrReturn(pInterface, VERR_INVALID_POINTER); 2246 AssertPtrReturn(pStream, VERR_INVALID_POINTER); 2247 2248 LogFlowFuncEnter(); 2249 2250 /* Nothing to do here for DSound. */ 2251 return VINF_SUCCESS; 2241 2252 } 2242 2253
Note:
See TracChangeset
for help on using the changeset viewer.