VirtualBox

source: vbox/trunk/src/VBox/Devices/Audio/DrvAudio.h@ 70975

Last change on this file since 70975 was 70972, checked in by vboxsync, 7 years ago

Audio/DrvAudioCommon.cpp: Implemented DrvAudioHlpMsToBytes().

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.1 KB
Line 
1/* $Id: DrvAudio.h 70972 2018-02-12 12:47:16Z vboxsync $ */
2/** @file
3 * Intermediate audio driver header.
4 */
5
6/*
7 * Copyright (C) 2006-2018 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef DRV_AUDIO_H
19#define DRV_AUDIO_H
20
21#include <limits.h>
22
23#include <iprt/circbuf.h>
24#include <iprt/critsect.h>
25#include <iprt/file.h>
26#include <iprt/path.h>
27
28#include <VBox/vmm/pdmdev.h>
29#include <VBox/vmm/pdm.h>
30#include <VBox/vmm/pdmaudioifs.h>
31
32typedef enum
33{
34 AUD_OPT_INT,
35 AUD_OPT_FMT,
36 AUD_OPT_STR,
37 AUD_OPT_BOOL
38} audio_option_tag_e;
39
40typedef struct audio_option
41{
42 const char *name;
43 audio_option_tag_e tag;
44 void *valp;
45 const char *descr;
46 int *overridenp;
47 int overriden;
48} audio_option;
49
50#ifdef VBOX_WITH_STATISTICS
51/**
52 * Structure for keeping stream statistics for the
53 * statistic manager (STAM).
54 */
55typedef struct DRVAUDIOSTATS
56{
57 STAMCOUNTER TotalStreamsActive;
58 STAMCOUNTER TotalStreamsCreated;
59 STAMCOUNTER TotalFramesRead;
60 STAMCOUNTER TotalFramesWritten;
61 STAMCOUNTER TotalFramesMixedIn;
62 STAMCOUNTER TotalFramesMixedOut;
63 STAMCOUNTER TotalFramesLostIn;
64 STAMCOUNTER TotalFramesLostOut;
65 STAMCOUNTER TotalFramesOut;
66 STAMCOUNTER TotalFramesIn;
67 STAMCOUNTER TotalBytesRead;
68 STAMCOUNTER TotalBytesWritten;
69 /** How much delay (in ms) for input processing. */
70 STAMPROFILEADV DelayIn;
71 /** How much delay (in ms) for output processing. */
72 STAMPROFILEADV DelayOut;
73} DRVAUDIOSTATS, *PDRVAUDIOSTATS;
74#endif
75
76/**
77 * Audio driver instance data.
78 *
79 * @implements PDMIAUDIOCONNECTOR
80 */
81typedef struct DRVAUDIO
82{
83 /** Friendly name of the driver. */
84 char szName[64];
85 /** Critical section for serializing access. */
86 RTCRITSECT CritSect;
87 /** Shutdown indicator. */
88 bool fTerminate;
89 /** Our audio connector interface. */
90 PDMIAUDIOCONNECTOR IAudioConnector;
91 /** Pointer to the driver instance. */
92 PPDMDRVINS pDrvIns;
93 /** Pointer to audio driver below us. */
94 PPDMIHOSTAUDIO pHostDrvAudio;
95 /** Pointer to CFGM configuration node of this driver. */
96 PCFGMNODE pCFGMNode;
97 /** List of host input/output audio streams. */
98 RTLISTANCHOR lstHstStreams;
99 /** List of guest input/output audio streams. */
100 RTLISTANCHOR lstGstStreams;
101#ifdef VBOX_WITH_AUDIO_ENUM
102 /** Flag indicating to perform an (re-)enumeration of the host audio devices. */
103 bool fEnumerateDevices;
104#endif
105 /** Audio configuration settings retrieved from the backend. */
106 PDMAUDIOBACKENDCFG BackendCfg;
107#ifdef VBOX_WITH_STATISTICS
108 /** Statistics for the statistics manager (STAM). */
109 DRVAUDIOSTATS Stats;
110#endif
111 struct
112 {
113 /** Whether this driver's input streams are enabled or not.
114 * This flag overrides all the attached stream statuses. */
115 bool fEnabled;
116 /** Max. number of free input streams.
117 * UINT32_MAX for unlimited streams. */
118 uint32_t cStreamsFree;
119#ifdef VBOX_WITH_AUDIO_CALLBACKS
120 RTLISTANCHOR lstCB;
121#endif
122 } In;
123 struct
124 {
125 /** Whether this driver's output streams are enabled or not.
126 * This flag overrides all the attached stream statuses. */
127 bool fEnabled;
128 /** Max. number of free output streams.
129 * UINT32_MAX for unlimited streams. */
130 uint32_t cStreamsFree;
131#ifdef VBOX_WITH_AUDIO_CALLBACKS
132 RTLISTANCHOR lstCB;
133#endif
134 } Out;
135 struct
136 {
137 /** Whether audio debugging is enabled or not. */
138 bool fEnabled;
139 /** Where to store the debugging files.
140 * Defaults to VBOX_AUDIO_DEBUG_DUMP_PCM_DATA_PATH if not set. */
141 char szPathOut[RTPATH_MAX + 1];
142 } Dbg;
143} DRVAUDIO, *PDRVAUDIO;
144
145/** Makes a PDRVAUDIO out of a PPDMIAUDIOCONNECTOR. */
146#define PDMIAUDIOCONNECTOR_2_DRVAUDIO(pInterface) \
147 ( (PDRVAUDIO)((uintptr_t)pInterface - RT_OFFSETOF(DRVAUDIO, IAudioConnector)) )
148
149
150bool DrvAudioHlpAudFmtIsSigned(PDMAUDIOFMT enmFmt);
151uint8_t DrvAudioHlpAudFmtToBits(PDMAUDIOFMT enmFmt);
152const char *DrvAudioHlpAudFmtToStr(PDMAUDIOFMT enmFmt);
153void DrvAudioHlpClearBuf(const PPDMAUDIOPCMPROPS pPCMInfo, void *pvBuf, size_t cbBuf, uint32_t cFrames);
154uint32_t DrvAudioHlpCalcBitrate(uint8_t cBits, uint32_t uHz, uint8_t cChannels);
155uint32_t DrvAudioHlpCalcBitrate(const PPDMAUDIOPCMPROPS pProps);
156uint32_t DrvAudioHlpMsToBytes(const PPDMAUDIOPCMPROPS pProps, uint32_t uMs);
157bool DrvAudioHlpPCMPropsAreEqual(const PPDMAUDIOPCMPROPS pPCMProps1, const PPDMAUDIOPCMPROPS pPCMProps2);
158bool DrvAudioHlpPCMPropsAreEqual(const PPDMAUDIOPCMPROPS pPCMProps, const PPDMAUDIOSTREAMCFG pCfg);
159bool DrvAudioHlpPCMPropsAreValid(const PPDMAUDIOPCMPROPS pProps);
160void DrvAudioHlpPCMPropsPrint(const PPDMAUDIOPCMPROPS pProps);
161int DrvAudioHlpPCMPropsToStreamCfg(const PPDMAUDIOPCMPROPS pPCMProps, PPDMAUDIOSTREAMCFG pCfg);
162const char *DrvAudioHlpRecSrcToStr(const PDMAUDIORECSOURCE enmRecSource);
163void DrvAudioHlpStreamCfgPrint(const PPDMAUDIOSTREAMCFG pCfg);
164bool DrvAudioHlpStreamCfgIsValid(const PPDMAUDIOSTREAMCFG pCfg);
165int DrvAudioHlpStreamCfgCopy(PPDMAUDIOSTREAMCFG pDstCfg, const PPDMAUDIOSTREAMCFG pSrcCfg);
166PPDMAUDIOSTREAMCFG DrvAudioHlpStreamCfgDup(const PPDMAUDIOSTREAMCFG pCfg);
167void DrvAudioHlpStreamCfgFree(PPDMAUDIOSTREAMCFG pCfg);
168const char *DrvAudioHlpStreamCmdToStr(PDMAUDIOSTREAMCMD enmCmd);
169PDMAUDIOFMT DrvAudioHlpStrToAudFmt(const char *pszFmt);
170
171int DrvAudioHlpSanitizeFileName(char *pszPath, size_t cbPath);
172int DrvAudioHlpGetFileName(char *pszFile, size_t cchFile, const char *pszPath, const char *pszName, uint32_t uInstance, PDMAUDIOFILETYPE enmType, PDMAUDIOFILENAMEFLAGS fFlags);
173
174PPDMAUDIODEVICE DrvAudioHlpDeviceAlloc(size_t cbData);
175void DrvAudioHlpDeviceFree(PPDMAUDIODEVICE pDev);
176PPDMAUDIODEVICE DrvAudioHlpDeviceDup(const PPDMAUDIODEVICE pDev, bool fCopyUserData);
177
178int DrvAudioHlpDeviceEnumInit(PPDMAUDIODEVICEENUM pDevEnm);
179void DrvAudioHlpDeviceEnumFree(PPDMAUDIODEVICEENUM pDevEnm);
180int DrvAudioHlpDeviceEnumAdd(PPDMAUDIODEVICEENUM pDevEnm, PPDMAUDIODEVICE pDev);
181int DrvAudioHlpDeviceEnumCopyEx(PPDMAUDIODEVICEENUM pDstDevEnm, const PPDMAUDIODEVICEENUM pSrcDevEnm, PDMAUDIODIR enmUsage);
182int DrvAudioHlpDeviceEnumCopy(PPDMAUDIODEVICEENUM pDstDevEnm, const PPDMAUDIODEVICEENUM pSrcDevEnm);
183PPDMAUDIODEVICEENUM DrvAudioHlpDeviceEnumDup(const PPDMAUDIODEVICEENUM pDevEnm);
184int DrvAudioHlpDeviceEnumCopy(PPDMAUDIODEVICEENUM pDstDevEnm, const PPDMAUDIODEVICEENUM pSrcDevEnm);
185int DrvAudioHlpDeviceEnumCopyEx(PPDMAUDIODEVICEENUM pDstDevEnm, const PPDMAUDIODEVICEENUM pSrcDevEnm, PDMAUDIODIR enmUsage, bool fCopyUserData);
186PPDMAUDIODEVICE DrvAudioHlpDeviceEnumGetDefaultDevice(const PPDMAUDIODEVICEENUM pDevEnm, PDMAUDIODIR enmDir);
187void DrvAudioHlpDeviceEnumPrint(const char *pszDesc, const PPDMAUDIODEVICEENUM pDevEnm);
188
189const char *DrvAudioHlpAudDirToStr(PDMAUDIODIR enmDir);
190const char *DrvAudioHlpAudMixerCtlToStr(PDMAUDIOMIXERCTL enmMixerCtl);
191char *DrvAudioHlpAudDevFlagsToStrA(PDMAUDIODEVFLAG fFlags);
192
193int DrvAudioHlpFileCreate(PDMAUDIOFILETYPE enmType, const char *pszFile, PDMAUDIOFILEFLAGS fFlags, PPDMAUDIOFILE *ppFile);
194void DrvAudioHlpFileDestroy(PPDMAUDIOFILE pFile);
195int DrvAudioHlpFileOpen(PPDMAUDIOFILE pFile, uint32_t fOpen, const PPDMAUDIOPCMPROPS pProps);
196int DrvAudioHlpFileClose(PPDMAUDIOFILE pFile);
197int DrvAudioHlpFileDelete(PPDMAUDIOFILE pFile);
198size_t DrvAudioHlpFileGetDataSize(PPDMAUDIOFILE pFile);
199bool DrvAudioHlpFileIsOpen(PPDMAUDIOFILE pFile);
200int DrvAudioHlpFileWrite(PPDMAUDIOFILE pFile, const void *pvBuf, size_t cbBuf, uint32_t fFlags);
201
202#define AUDIO_MAKE_FOURCC(c0, c1, c2, c3) RT_H2LE_U32_C(RT_MAKE_U32_FROM_U8(c0, c1, c2, c3))
203
204#endif /* !DRV_AUDIO_H */
205
Note: See TracBrowser for help on using the repository browser.

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