/* $Id: DrvAudio.h 71113 2018-02-23 09:51:14Z vboxsync $ */ /** @file * Intermediate audio driver header. */ /* * Copyright (C) 2006-2018 Oracle Corporation * * This file is part of VirtualBox Open Source Edition (OSE), as * available from http://www.virtualbox.org. This file is free software; * you can redistribute it and/or modify it under the terms of the GNU * General Public License (GPL) as published by the Free Software * Foundation, in version 2 as it comes in the "COPYING" file of the * VirtualBox OSE distribution. VirtualBox OSE is distributed in the * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. */ #ifndef DRV_AUDIO_H #define DRV_AUDIO_H #include #include #include #include #include #include #include #include typedef enum { AUD_OPT_INT, AUD_OPT_FMT, AUD_OPT_STR, AUD_OPT_BOOL } audio_option_tag_e; typedef struct audio_option { const char *name; audio_option_tag_e tag; void *valp; const char *descr; int *overridenp; int overriden; } audio_option; #ifdef VBOX_WITH_STATISTICS /** * Structure for keeping stream statistics for the * statistic manager (STAM). */ typedef struct DRVAUDIOSTATS { STAMCOUNTER TotalStreamsActive; STAMCOUNTER TotalStreamsCreated; STAMCOUNTER TotalFramesRead; STAMCOUNTER TotalFramesWritten; STAMCOUNTER TotalFramesMixedIn; STAMCOUNTER TotalFramesMixedOut; STAMCOUNTER TotalFramesLostIn; STAMCOUNTER TotalFramesLostOut; STAMCOUNTER TotalFramesOut; STAMCOUNTER TotalFramesIn; STAMCOUNTER TotalBytesRead; STAMCOUNTER TotalBytesWritten; /** How much delay (in ms) for input processing. */ STAMPROFILEADV DelayIn; /** How much delay (in ms) for output processing. */ STAMPROFILEADV DelayOut; } DRVAUDIOSTATS, *PDRVAUDIOSTATS; #endif /** * Audio driver instance data. * * @implements PDMIAUDIOCONNECTOR */ typedef struct DRVAUDIO { /** Friendly name of the driver. */ char szName[64]; /** Critical section for serializing access. */ RTCRITSECT CritSect; /** Shutdown indicator. */ bool fTerminate; /** Our audio connector interface. */ PDMIAUDIOCONNECTOR IAudioConnector; /** Pointer to the driver instance. */ PPDMDRVINS pDrvIns; /** Pointer to audio driver below us. */ PPDMIHOSTAUDIO pHostDrvAudio; /** Pointer to CFGM configuration node of this driver. */ PCFGMNODE pCFGMNode; /** List of host input/output audio streams. */ RTLISTANCHOR lstHstStreams; /** List of guest input/output audio streams. */ RTLISTANCHOR lstGstStreams; #ifdef VBOX_WITH_AUDIO_ENUM /** Flag indicating to perform an (re-)enumeration of the host audio devices. */ bool fEnumerateDevices; #endif /** Audio configuration settings retrieved from the backend. */ PDMAUDIOBACKENDCFG BackendCfg; #ifdef VBOX_WITH_STATISTICS /** Statistics for the statistics manager (STAM). */ DRVAUDIOSTATS Stats; #endif struct { /** Whether this driver's input streams are enabled or not. * This flag overrides all the attached stream statuses. */ bool fEnabled; /** Max. number of free input streams. * UINT32_MAX for unlimited streams. */ uint32_t cStreamsFree; #ifdef VBOX_WITH_AUDIO_CALLBACKS RTLISTANCHOR lstCB; #endif } In; struct { /** Whether this driver's output streams are enabled or not. * This flag overrides all the attached stream statuses. */ bool fEnabled; /** Max. number of free output streams. * UINT32_MAX for unlimited streams. */ uint32_t cStreamsFree; #ifdef VBOX_WITH_AUDIO_CALLBACKS RTLISTANCHOR lstCB; #endif } Out; struct { /** Whether audio debugging is enabled or not. */ bool fEnabled; /** Where to store the debugging files. * Defaults to VBOX_AUDIO_DEBUG_DUMP_PCM_DATA_PATH if not set. */ char szPathOut[RTPATH_MAX + 1]; } Dbg; } DRVAUDIO, *PDRVAUDIO; /** Makes a PDRVAUDIO out of a PPDMIAUDIOCONNECTOR. */ #define PDMIAUDIOCONNECTOR_2_DRVAUDIO(pInterface) \ ( (PDRVAUDIO)((uintptr_t)pInterface - RT_OFFSETOF(DRVAUDIO, IAudioConnector)) ) bool DrvAudioHlpAudFmtIsSigned(PDMAUDIOFMT enmFmt); uint8_t DrvAudioHlpAudFmtToBits(PDMAUDIOFMT enmFmt); const char *DrvAudioHlpAudFmtToStr(PDMAUDIOFMT enmFmt); void DrvAudioHlpClearBuf(const PPDMAUDIOPCMPROPS pPCMInfo, void *pvBuf, size_t cbBuf, uint32_t cFrames); uint32_t DrvAudioHlpCalcBitrate(uint8_t cBits, uint32_t uHz, uint8_t cChannels); uint32_t DrvAudioHlpCalcBitrate(const PPDMAUDIOPCMPROPS pProps); uint64_t DrvAudioHlpBytesToMs(const PPDMAUDIOPCMPROPS pProps, size_t cbBytes); uint32_t DrvAudioHlpMsToBytes(const PPDMAUDIOPCMPROPS pProps, uint32_t uMs); bool DrvAudioHlpPCMPropsAreEqual(const PPDMAUDIOPCMPROPS pPCMProps1, const PPDMAUDIOPCMPROPS pPCMProps2); bool DrvAudioHlpPCMPropsAreEqual(const PPDMAUDIOPCMPROPS pPCMProps, const PPDMAUDIOSTREAMCFG pCfg); bool DrvAudioHlpPCMPropsAreValid(const PPDMAUDIOPCMPROPS pProps); void DrvAudioHlpPCMPropsPrint(const PPDMAUDIOPCMPROPS pProps); int DrvAudioHlpPCMPropsToStreamCfg(const PPDMAUDIOPCMPROPS pPCMProps, PPDMAUDIOSTREAMCFG pCfg); const char *DrvAudioHlpPlaybackDstToStr(const PDMAUDIOPLAYBACKDEST enmPlaybackDst); const char *DrvAudioHlpRecSrcToStr(const PDMAUDIORECSOURCE enmRecSource); void DrvAudioHlpStreamCfgPrint(const PPDMAUDIOSTREAMCFG pCfg); bool DrvAudioHlpStreamCfgIsValid(const PPDMAUDIOSTREAMCFG pCfg); int DrvAudioHlpStreamCfgCopy(PPDMAUDIOSTREAMCFG pDstCfg, const PPDMAUDIOSTREAMCFG pSrcCfg); PPDMAUDIOSTREAMCFG DrvAudioHlpStreamCfgDup(const PPDMAUDIOSTREAMCFG pCfg); void DrvAudioHlpStreamCfgFree(PPDMAUDIOSTREAMCFG pCfg); const char *DrvAudioHlpStreamCmdToStr(PDMAUDIOSTREAMCMD enmCmd); PDMAUDIOFMT DrvAudioHlpStrToAudFmt(const char *pszFmt); int DrvAudioHlpSanitizeFileName(char *pszPath, size_t cbPath); int DrvAudioHlpGetFileName(char *pszFile, size_t cchFile, const char *pszPath, const char *pszName, uint32_t uInstance, PDMAUDIOFILETYPE enmType, PDMAUDIOFILENAMEFLAGS fFlags); PPDMAUDIODEVICE DrvAudioHlpDeviceAlloc(size_t cbData); void DrvAudioHlpDeviceFree(PPDMAUDIODEVICE pDev); PPDMAUDIODEVICE DrvAudioHlpDeviceDup(const PPDMAUDIODEVICE pDev, bool fCopyUserData); int DrvAudioHlpDeviceEnumInit(PPDMAUDIODEVICEENUM pDevEnm); void DrvAudioHlpDeviceEnumFree(PPDMAUDIODEVICEENUM pDevEnm); int DrvAudioHlpDeviceEnumAdd(PPDMAUDIODEVICEENUM pDevEnm, PPDMAUDIODEVICE pDev); int DrvAudioHlpDeviceEnumCopyEx(PPDMAUDIODEVICEENUM pDstDevEnm, const PPDMAUDIODEVICEENUM pSrcDevEnm, PDMAUDIODIR enmUsage); int DrvAudioHlpDeviceEnumCopy(PPDMAUDIODEVICEENUM pDstDevEnm, const PPDMAUDIODEVICEENUM pSrcDevEnm); PPDMAUDIODEVICEENUM DrvAudioHlpDeviceEnumDup(const PPDMAUDIODEVICEENUM pDevEnm); int DrvAudioHlpDeviceEnumCopy(PPDMAUDIODEVICEENUM pDstDevEnm, const PPDMAUDIODEVICEENUM pSrcDevEnm); int DrvAudioHlpDeviceEnumCopyEx(PPDMAUDIODEVICEENUM pDstDevEnm, const PPDMAUDIODEVICEENUM pSrcDevEnm, PDMAUDIODIR enmUsage, bool fCopyUserData); PPDMAUDIODEVICE DrvAudioHlpDeviceEnumGetDefaultDevice(const PPDMAUDIODEVICEENUM pDevEnm, PDMAUDIODIR enmDir); void DrvAudioHlpDeviceEnumPrint(const char *pszDesc, const PPDMAUDIODEVICEENUM pDevEnm); const char *DrvAudioHlpAudDirToStr(PDMAUDIODIR enmDir); const char *DrvAudioHlpAudMixerCtlToStr(PDMAUDIOMIXERCTL enmMixerCtl); char *DrvAudioHlpAudDevFlagsToStrA(PDMAUDIODEVFLAG fFlags); int DrvAudioHlpFileCreate(PDMAUDIOFILETYPE enmType, const char *pszFile, PDMAUDIOFILEFLAGS fFlags, PPDMAUDIOFILE *ppFile); void DrvAudioHlpFileDestroy(PPDMAUDIOFILE pFile); int DrvAudioHlpFileOpen(PPDMAUDIOFILE pFile, uint32_t fOpen, const PPDMAUDIOPCMPROPS pProps); int DrvAudioHlpFileClose(PPDMAUDIOFILE pFile); int DrvAudioHlpFileDelete(PPDMAUDIOFILE pFile); size_t DrvAudioHlpFileGetDataSize(PPDMAUDIOFILE pFile); bool DrvAudioHlpFileIsOpen(PPDMAUDIOFILE pFile); int DrvAudioHlpFileWrite(PPDMAUDIOFILE pFile, const void *pvBuf, size_t cbBuf, uint32_t fFlags); #define AUDIO_MAKE_FOURCC(c0, c1, c2, c3) RT_H2LE_U32_C(RT_MAKE_U32_FROM_U8(c0, c1, c2, c3)) #endif /* !DRV_AUDIO_H */