Changeset 59275 in vbox for trunk/src/VBox/Devices/Audio/AudioMixer.cpp
- Timestamp:
- Jan 7, 2016 11:57:56 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioMixer.cpp
r58600 r59275 7 7 8 8 /* 9 * Copyright (C) 2014-201 5Oracle Corporation9 * Copyright (C) 2014-2016 Oracle Corporation 10 10 * 11 11 * This file is part of VirtualBox Open Source Edition (OSE), as … … 250 250 } 251 251 252 int AudioMixerGetDeviceFormat(PAUDIOMIXER pMixer, PPDMAUDIOSTREAMCFG pCfg) 253 { 254 AssertPtrReturn(pMixer, VERR_INVALID_POINTER); 255 AssertPtrReturn(pCfg, VERR_INVALID_POINTER); 256 257 /** @todo Perform a deep copy, if needed. */ 258 *pCfg = pMixer->devFmt; 259 260 return VINF_SUCCESS; 261 } 262 252 263 uint32_t AudioMixerGetStreamCount(PAUDIOMIXER pMixer) 253 264 {
Note:
See TracChangeset
for help on using the changeset viewer.