Changeset 57393 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Aug 17, 2015 3:02:05 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102157
- Location:
- trunk/src/VBox/Devices/Audio
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevIchHda.cpp
r57358 r57393 2499 2499 } 2500 2500 2501 static DECLCALLBACK(int)hdaTransfer(PHDASTATE pThis,2502 2501 static int hdaTransfer(PHDASTATE pThis, 2502 ENMSOUNDSOURCE enmSrc, uint32_t cbAvail) 2503 2503 { 2504 2504 AssertPtrReturn(pThis, VERR_INVALID_POINTER); -
trunk/src/VBox/Devices/Audio/DevIchHdaCodec.cpp
r57358 r57393 867 867 868 868 869 static intstac9220ResetNode(PHDACODEC pThis, uint8_t nodenum, PCODECNODE pNode)869 static DECLCALLBACK(int) stac9220ResetNode(PHDACODEC pThis, uint8_t nodenum, PCODECNODE pNode) 870 870 { 871 871 pNode->node.id = nodenum; … … 2561 2561 #endif 2562 2562 2563 static intcodecLookup(PHDACODEC pThis, uint32_t cmd, PPFNHDACODECVERBPROCESSOR pfn)2563 static DECLCALLBACK(int) codecLookup(PHDACODEC pThis, uint32_t cmd, PPFNHDACODECVERBPROCESSOR pfn) 2564 2564 { 2565 2565 Assert(CODEC_CAD(cmd) == pThis->id); -
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r57382 r57393 859 859 * @param pcbWritten 860 860 */ 861 intdrvAudioWrite(PPDMIAUDIOCONNECTOR pInterface, PPDMAUDIOGSTSTRMOUT pGstStrmOut,862 const void *pvBuf, uint32_t cbBuf, uint32_t *pcbWritten)861 static DECLCALLBACK(int) drvAudioWrite(PPDMIAUDIOCONNECTOR pInterface, PPDMAUDIOGSTSTRMOUT pGstStrmOut, 862 const void *pvBuf, uint32_t cbBuf, uint32_t *pcbWritten) 863 863 { 864 864 PDRVAUDIO pThis = PDMIAUDIOCONNECTOR_2_DRVAUDIO(pInterface);
Note:
See TracChangeset
for help on using the changeset viewer.