Changeset 44667 in vbox for trunk/src/VBox/Devices/Audio/DevCodec.h
- Timestamp:
- Feb 13, 2013 2:30:33 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 83760
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevCodec.h
r44639 r44667 18 18 #ifndef DEV_CODEC_H 19 19 #define DEV_CODEC_H 20 20 21 struct CODECState; 21 struct INTELHDLinkState; 22 23 typedef DECLCALLBACK(int) FNCODECVERBPROCESSOR(struct CODECState *pState, uint32_t cmd, uint64_t *pResp); 22 23 typedef DECLCALLBACK(int) FNCODECVERBPROCESSOR(struct CODECState *pThis, uint32_t cmd, uint64_t *pResp); 24 24 typedef FNCODECVERBPROCESSOR *PFNCODECVERBPROCESSOR; 25 25 typedef FNCODECVERBPROCESSOR **PPFNCODECVERBPROCESSOR; 26 26 27 /* RPM 5.3.1 */27 /* PRM 5.3.1 */ 28 28 #define CODEC_RESPONSE_UNSOLICITED RT_BIT_64(34) 29 29 … … 483 483 uint8_t u8AssemblyId; 484 484 #ifndef VBOX_WITH_HDA_CODEC_EMU 485 CODECVERB *pVerbs;485 CODECVERB const *paVerbs; 486 486 int cVerbs; 487 487 #else … … 521 521 DECLR3CALLBACKMEMBER(int, pfnCodecNodeReset, (struct CODECState *pState, uint8_t, PCODECNODE)); 522 522 /* These callbacks are set by codec implementation to answer debugger requests */ 523 DECLR3CALLBACKMEMBER(void, pfnCodecDbgListNodes, ( CODECState *pState, PCDBGFINFOHLP pHlp, const char *pszArgs));524 DECLR3CALLBACKMEMBER(void, pfnCodecDbgSelector, ( CODECState *pState, PCDBGFINFOHLP pHlp, const char *pszArgs));523 DECLR3CALLBACKMEMBER(void, pfnCodecDbgListNodes, (struct CODECState *pState, PCDBGFINFOHLP pHlp, const char *pszArgs)); 524 DECLR3CALLBACKMEMBER(void, pfnCodecDbgSelector, (struct CODECState *pState, PCDBGFINFOHLP pHlp, const char *pszArgs)); 525 525 } CODECState, *PCODECState; 526 526 /** The ICH HDA (Intel) codec state. */ … … 529 529 typedef HDACODEC *PHDACODEC; 530 530 531 int codecConstruct(PPDMDEVINS pDevIns, CODECState *pCodecState, PCFGMNODE pCfgHandle);532 int codecDestruct(CODECState *pCodecState);533 int codecSaveState(CODECState *pCodecState, PSSMHANDLE pSSMHandle);534 int codecLoadState(CODECState *pCodecState, PSSMHANDLE pSSMHandle, uint32_t uVersion);535 int codecOpenVoice(CODECState *pCodecState, ENMSOUNDSOURCE enmSoundSource, audsettings_t *pAudioSettings);531 int hdaCodecConstruct(PPDMDEVINS pDevIns, PHDACODEC pThis, PCFGMNODE pCfg); 532 int hdaCodecDestruct(PHDACODEC pThis); 533 int hdaCodecSaveState(PHDACODEC pThis, PSSMHANDLE pSSM); 534 int hdaCodecLoadState(PHDACODEC pThis, PSSMHANDLE pSSM, uint32_t uVersion); 535 int hdaCodecOpenVoice(PHDACODEC pThis, ENMSOUNDSOURCE enmSoundSource, audsettings_t *pAudioSettings); 536 536 537 537 #define HDA_SSM_VERSION 4 … … 544 544 struct CODECEMU 545 545 { 546 DECLR3CALLBACKMEMBER(int, pfnCodecEmuConstruct, (PCODECState pState));547 DECLR3CALLBACKMEMBER(int, pfnCodecEmuDestruct, (PCODECState pState));548 DECLR3CALLBACKMEMBER(int, pfnCodecEmuReset, (PCODECState pState, bool fInit));546 DECLR3CALLBACKMEMBER(int, pfnCodecEmuConstruct,(PHDACODEC pThis)); 547 DECLR3CALLBACKMEMBER(int, pfnCodecEmuDestruct,(PHDACODEC pThis)); 548 DECLR3CALLBACKMEMBER(int, pfnCodecEmuReset,(PHDACODEC pThis, bool fInit)); 549 549 }; 550 550 # endif
Note:
See TracChangeset
for help on using the changeset viewer.