VirtualBox

Ignore:
Timestamp:
Feb 13, 2013 2:30:33 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
83760
Message:

HDA codec cleanups.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/DevCodec.h

    r44639 r44667  
    1818#ifndef DEV_CODEC_H
    1919#define DEV_CODEC_H
     20
    2021struct CODECState;
    21 struct INTELHDLinkState;
    22 
    23 typedef DECLCALLBACK(int) FNCODECVERBPROCESSOR(struct CODECState *pState, uint32_t cmd, uint64_t *pResp);
     22
     23typedef DECLCALLBACK(int) FNCODECVERBPROCESSOR(struct CODECState *pThis, uint32_t cmd, uint64_t *pResp);
    2424typedef FNCODECVERBPROCESSOR *PFNCODECVERBPROCESSOR;
    2525typedef FNCODECVERBPROCESSOR **PPFNCODECVERBPROCESSOR;
    2626
    27 /* RPM 5.3.1 */
     27/* PRM 5.3.1 */
    2828#define CODEC_RESPONSE_UNSOLICITED RT_BIT_64(34)
    2929
     
    483483    uint8_t                 u8AssemblyId;
    484484#ifndef VBOX_WITH_HDA_CODEC_EMU
    485     CODECVERB               *pVerbs;
     485    CODECVERB const        *paVerbs;
    486486    int                     cVerbs;
    487487#else
     
    521521    DECLR3CALLBACKMEMBER(int, pfnCodecNodeReset, (struct CODECState *pState, uint8_t, PCODECNODE));
    522522    /* 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));
    525525} CODECState, *PCODECState;
    526526/** The ICH HDA (Intel) codec state. */
     
    529529typedef HDACODEC *PHDACODEC;
    530530
    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);
     531int hdaCodecConstruct(PPDMDEVINS pDevIns, PHDACODEC pThis, PCFGMNODE pCfg);
     532int hdaCodecDestruct(PHDACODEC pThis);
     533int hdaCodecSaveState(PHDACODEC pThis, PSSMHANDLE pSSM);
     534int hdaCodecLoadState(PHDACODEC pThis, PSSMHANDLE pSSM, uint32_t uVersion);
     535int hdaCodecOpenVoice(PHDACODEC pThis, ENMSOUNDSOURCE enmSoundSource, audsettings_t *pAudioSettings);
    536536
    537537#define HDA_SSM_VERSION   4
     
    544544struct CODECEMU
    545545{
    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));
    549549};
    550550# endif
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette