VirtualBox

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

Last change on this file since 70363 was 70013, checked in by vboxsync, 7 years ago

Audio: Unified audio debug / dumping code to also get device DMA data when enabled at runtime.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.9 KB
Line 
1/* $Id: DrvAudio.h 70013 2017-12-08 11:52:00Z vboxsync $ */
2/** @file
3 * Intermediate audio driver header.
4 */
5
6/*
7 * Copyright (C) 2006-2017 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 /** List of host input/output audio streams. */
96 RTLISTANCHOR lstHstStreams;
97 /** List of guest input/output audio streams. */
98 RTLISTANCHOR lstGstStreams;
99#ifdef VBOX_WITH_AUDIO_ENUM
100 /** Flag indicating to perform an (re-)enumeration of the host audio devices. */
101 bool fEnumerateDevices;
102#endif
103 /** Audio configuration settings retrieved from the backend. */
104 PDMAUDIOBACKENDCFG BackendCfg;
105#ifdef VBOX_WITH_STATISTICS
106 /** Statistics for the statistics manager (STAM). */
107 DRVAUDIOSTATS Stats;
108#endif
109 struct
110 {
111 /** Whether this driver's input streams are enabled or not.
112 * This flag overrides all the attached stream statuses. */
113 bool fEnabled;
114 /** Max. number of free input streams.
115 * UINT32_MAX for unlimited streams. */
116 uint32_t cStreamsFree;
117#ifdef VBOX_WITH_AUDIO_CALLBACKS
118 RTLISTANCHOR lstCB;
119#endif
120 } In;
121 struct
122 {
123 /** Whether this driver's output streams are enabled or not.
124 * This flag overrides all the attached stream statuses. */
125 bool fEnabled;
126 /** Max. number of free output streams.
127 * UINT32_MAX for unlimited streams. */
128 uint32_t cStreamsFree;
129#ifdef VBOX_WITH_AUDIO_CALLBACKS
130 RTLISTANCHOR lstCB;
131#endif
132 } Out;
133 struct
134 {
135 /** Whether audio debugging is enabled or not. */
136 bool fEnabled;
137 /** Where to store the debugging files.
138 * Defaults to VBOX_AUDIO_DEBUG_DUMP_PCM_DATA_PATH if not set. */
139 char szPathOut[RTPATH_MAX + 1];
140 } Dbg;
141} DRVAUDIO, *PDRVAUDIO;
142
143/** Makes a PDRVAUDIO out of a PPDMIAUDIOCONNECTOR. */
144#define PDMIAUDIOCONNECTOR_2_DRVAUDIO(pInterface) \
145 ( (PDRVAUDIO)((uintptr_t)pInterface - RT_OFFSETOF(DRVAUDIO, IAudioConnector)) )
146
147
148bool DrvAudioHlpAudFmtIsSigned(PDMAUDIOFMT enmFmt);
149uint8_t DrvAudioHlpAudFmtToBits(PDMAUDIOFMT enmFmt);
150const char *DrvAudioHlpAudFmtToStr(PDMAUDIOFMT enmFmt);
151void DrvAudioHlpClearBuf(const PPDMAUDIOPCMPROPS pPCMInfo, void *pvBuf, size_t cbBuf, uint32_t cFrames);
152uint32_t DrvAudioHlpCalcBitrate(uint8_t cBits, uint32_t uHz, uint8_t cChannels);
153uint32_t DrvAudioHlpCalcBitrate(const PPDMAUDIOPCMPROPS pProps);
154bool DrvAudioHlpPCMPropsAreEqual(const PPDMAUDIOPCMPROPS pPCMProps1, const PPDMAUDIOPCMPROPS pPCMProps2);
155bool DrvAudioHlpPCMPropsAreEqual(const PPDMAUDIOPCMPROPS pPCMProps, const PPDMAUDIOSTREAMCFG pCfg);
156bool DrvAudioHlpPCMPropsAreValid(const PPDMAUDIOPCMPROPS pProps);
157void DrvAudioHlpPCMPropsPrint(const PPDMAUDIOPCMPROPS pProps);
158int DrvAudioHlpPCMPropsToStreamCfg(const PPDMAUDIOPCMPROPS pPCMProps, PPDMAUDIOSTREAMCFG pCfg);
159const char *DrvAudioHlpRecSrcToStr(const PDMAUDIORECSOURCE enmRecSource);
160void DrvAudioHlpStreamCfgPrint(const PPDMAUDIOSTREAMCFG pCfg);
161bool DrvAudioHlpStreamCfgIsValid(const PPDMAUDIOSTREAMCFG pCfg);
162int DrvAudioHlpStreamCfgCopy(PPDMAUDIOSTREAMCFG pDstCfg, const PPDMAUDIOSTREAMCFG pSrcCfg);
163PPDMAUDIOSTREAMCFG DrvAudioHlpStreamCfgDup(const PPDMAUDIOSTREAMCFG pCfg);
164void DrvAudioHlpStreamCfgFree(PPDMAUDIOSTREAMCFG pCfg);
165const char *DrvAudioHlpStreamCmdToStr(PDMAUDIOSTREAMCMD enmCmd);
166PDMAUDIOFMT DrvAudioHlpStrToAudFmt(const char *pszFmt);
167
168int DrvAudioHlpSanitizeFileName(char *pszPath, size_t cbPath);
169int DrvAudioHlpGetFileName(char *pszFile, size_t cchFile, const char *pszPath, const char *pszName, uint32_t uInstance, PDMAUDIOFILETYPE enmType, PDMAUDIOFILENAMEFLAGS fFlags);
170
171PPDMAUDIODEVICE DrvAudioHlpDeviceAlloc(size_t cbData);
172void DrvAudioHlpDeviceFree(PPDMAUDIODEVICE pDev);
173PPDMAUDIODEVICE DrvAudioHlpDeviceDup(const PPDMAUDIODEVICE pDev, bool fCopyUserData);
174
175int DrvAudioHlpDeviceEnumInit(PPDMAUDIODEVICEENUM pDevEnm);
176void DrvAudioHlpDeviceEnumFree(PPDMAUDIODEVICEENUM pDevEnm);
177int DrvAudioHlpDeviceEnumAdd(PPDMAUDIODEVICEENUM pDevEnm, PPDMAUDIODEVICE pDev);
178int DrvAudioHlpDeviceEnumCopyEx(PPDMAUDIODEVICEENUM pDstDevEnm, const PPDMAUDIODEVICEENUM pSrcDevEnm, PDMAUDIODIR enmUsage);
179int DrvAudioHlpDeviceEnumCopy(PPDMAUDIODEVICEENUM pDstDevEnm, const PPDMAUDIODEVICEENUM pSrcDevEnm);
180PPDMAUDIODEVICEENUM DrvAudioHlpDeviceEnumDup(const PPDMAUDIODEVICEENUM pDevEnm);
181int DrvAudioHlpDeviceEnumCopy(PPDMAUDIODEVICEENUM pDstDevEnm, const PPDMAUDIODEVICEENUM pSrcDevEnm);
182int DrvAudioHlpDeviceEnumCopyEx(PPDMAUDIODEVICEENUM pDstDevEnm, const PPDMAUDIODEVICEENUM pSrcDevEnm, PDMAUDIODIR enmUsage, bool fCopyUserData);
183PPDMAUDIODEVICE DrvAudioHlpDeviceEnumGetDefaultDevice(const PPDMAUDIODEVICEENUM pDevEnm, PDMAUDIODIR enmDir);
184void DrvAudioHlpDeviceEnumPrint(const char *pszDesc, const PPDMAUDIODEVICEENUM pDevEnm);
185
186const char *DrvAudioHlpAudDirToStr(PDMAUDIODIR enmDir);
187const char *DrvAudioHlpAudMixerCtlToStr(PDMAUDIOMIXERCTL enmMixerCtl);
188char *DrvAudioHlpAudDevFlagsToStrA(PDMAUDIODEVFLAG fFlags);
189
190int DrvAudioHlpFileCreate(PDMAUDIOFILETYPE enmType, const char *pszFile, PDMAUDIOFILEFLAGS fFlags, PPDMAUDIOFILE *ppFile);
191void DrvAudioHlpFileDestroy(PPDMAUDIOFILE pFile);
192int DrvAudioHlpFileOpen(PPDMAUDIOFILE pFile, uint32_t fOpen, const PPDMAUDIOPCMPROPS pProps);
193int DrvAudioHlpFileClose(PPDMAUDIOFILE pFile);
194int DrvAudioHlpFileDelete(PPDMAUDIOFILE pFile);
195size_t DrvAudioHlpFileGetDataSize(PPDMAUDIOFILE pFile);
196int DrvAudioHlpFileWrite(PPDMAUDIOFILE pFile, const void *pvBuf, size_t cbBuf, uint32_t fFlags);
197
198#define AUDIO_MAKE_FOURCC(c0, c1, c2, c3) RT_H2LE_U32_C(RT_MAKE_U32_FROM_U8(c0, c1, c2, c3))
199
200#endif /* !DRV_AUDIO_H */
201
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