VirtualBox

source: vbox/trunk/src/VBox/Devices/Audio/HDAStreamMap.cpp@ 81031

Last change on this file since 81031 was 76553, checked in by vboxsync, 6 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.4 KB
Line 
1/* $Id: HDAStreamMap.cpp 76553 2019-01-01 01:45:53Z vboxsync $ */
2/** @file
3 * HDAStreamMap.cpp - Stream mapping functions for HD Audio.
4 */
5
6/*
7 * Copyright (C) 2017-2019 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
19/*********************************************************************************************************************************
20* Header Files *
21*********************************************************************************************************************************/
22#define LOG_GROUP LOG_GROUP_DEV_HDA
23#include <VBox/log.h>
24
25#include <iprt/mem.h>
26
27#include <VBox/vmm/pdmdev.h>
28#include <VBox/vmm/pdmaudioifs.h>
29
30#include "DrvAudio.h"
31
32#include "HDAStreamChannel.h"
33#include "HDAStreamMap.h"
34
35#ifdef IN_RING3
36
37static int hdaR3StreamMapSetup(PHDASTREAMMAP pMap, PPDMAUDIOPCMPROPS pProps);
38
39/**
40 * Initializes a stream mapping structure according to the given PCM properties.
41 *
42 * @return IPRT status code.
43 * @param pMap Pointer to mapping to initialize.
44 * @param pProps Pointer to PCM properties to use for initialization.
45 */
46int hdaR3StreamMapInit(PHDASTREAMMAP pMap, PPDMAUDIOPCMPROPS pProps)
47{
48 AssertPtrReturn(pMap, VERR_INVALID_POINTER);
49 AssertPtrReturn(pProps, VERR_INVALID_POINTER);
50
51 if (!DrvAudioHlpPCMPropsAreValid(pProps))
52 return VERR_INVALID_PARAMETER;
53
54 hdaR3StreamMapReset(pMap);
55
56 int rc = hdaR3StreamMapSetup(pMap, pProps);
57 if (RT_FAILURE(rc))
58 return rc;
59
60#ifdef VBOX_WITH_AUDIO_HDA_51_SURROUND
61 if ( RT_SUCCESS(rc)
62 /* Create circular buffer if not created yet. */
63 && !pMap->pCircBuf)
64 {
65 rc = RTCircBufCreate(&pMap->pCircBuf, _4K); /** @todo Make size configurable? */
66 }
67#endif
68
69 if (RT_SUCCESS(rc))
70 {
71 pMap->cbFrameSize = pProps->cChannels * pProps->cBytes;
72
73 LogFunc(("cChannels=%RU8, cBytes=%RU8 -> cbFrameSize=%RU32\n",
74 pProps->cChannels, pProps->cBytes, pMap->cbFrameSize));
75
76 Assert(pMap->cbFrameSize); /* Frame size must not be 0. */
77
78 pMap->enmLayout = PDMAUDIOSTREAMLAYOUT_INTERLEAVED;
79 }
80
81 return rc;
82}
83
84
85/**
86 * Destroys a given stream mapping.
87 *
88 * @param pMap Pointer to mapping to destroy.
89 */
90void hdaR3StreamMapDestroy(PHDASTREAMMAP pMap)
91{
92 hdaR3StreamMapReset(pMap);
93
94#ifdef VBOX_WITH_AUDIO_HDA_51_SURROUND
95 if (pMap->pCircBuf)
96 {
97 RTCircBufDestroy(pMap->pCircBuf);
98 pMap->pCircBuf = NULL;
99 }
100#endif
101}
102
103
104/**
105 * Resets a given stream mapping.
106 *
107 * @param pMap Pointer to mapping to reset.
108 */
109void hdaR3StreamMapReset(PHDASTREAMMAP pMap)
110{
111 AssertPtrReturnVoid(pMap);
112
113 pMap->enmLayout = PDMAUDIOSTREAMLAYOUT_UNKNOWN;
114
115 if (pMap->paMappings)
116 {
117 for (uint8_t i = 0; i < pMap->cMappings; i++)
118 hdaR3StreamChannelDataDestroy(&pMap->paMappings[i].Data);
119
120 RTMemFree(pMap->paMappings);
121 pMap->paMappings = NULL;
122
123 pMap->cMappings = 0;
124 }
125}
126
127
128/**
129 * Sets up a stream mapping according to the given properties / configuration.
130 *
131 * @return VBox status code, or VERR_NOT_SUPPORTED if the channel setup is not supported (yet).
132 * @param pMap Pointer to mapping to set up.
133 * @param pProps PCM audio properties to use for lookup.
134 */
135static int hdaR3StreamMapSetup(PHDASTREAMMAP pMap, PPDMAUDIOPCMPROPS pProps)
136{
137 int rc;
138
139 /** @todo We ASSUME that all channels in a stream ...
140 * - have the same format
141 * - are in a consecutive order with no gaps in between
142 * - have a simple (raw) data layout
143 * - work in a non-striped fashion, e.g. interleaved (only on one SDn, not spread over multiple SDns) */
144 if ( pProps->cChannels == 1 /* Mono */
145 || pProps->cChannels == 2 /* Stereo */
146 || pProps->cChannels == 4 /* Quadrophonic */
147 || pProps->cChannels == 6) /* Surround (5.1) */
148 {
149 /* For now we don't have anything other as mono / stereo channels being covered by the backends.
150 * So just set up one channel covering those and skipping the rest (like configured rear or center/LFE outputs). */
151 pMap->cMappings = 1;
152 pMap->paMappings = (PPDMAUDIOSTREAMMAP)RTMemAlloc(sizeof(PDMAUDIOSTREAMMAP) * pMap->cMappings);
153 if (!pMap->paMappings)
154 return VERR_NO_MEMORY;
155
156 PPDMAUDIOSTREAMMAP pMapLR = &pMap->paMappings[0];
157
158 pMapLR->aID[0] = PDMAUDIOSTREAMCHANNELID_FRONT_LEFT;
159 pMapLR->aID[1] = PDMAUDIOSTREAMCHANNELID_FRONT_RIGHT;
160 pMapLR->cbFrame = pProps->cBytes * pProps->cChannels;
161 pMapLR->cbSize = pProps->cBytes * 2 /* Front left + Front right channels */;
162 pMapLR->cbFirst = 0;
163 pMapLR->cbOff = pMapLR->cbFirst;
164
165 rc = hdaR3StreamChannelDataInit(&pMapLR->Data, PDMAUDIOSTREAMCHANNELDATA_FLAG_NONE);
166 AssertRC(rc);
167 }
168 else
169 rc = VERR_NOT_SUPPORTED; /** @todo r=andy Support more setups. */
170
171 return rc;
172}
173#endif /* IN_RING3 */
174
Note: See TracBrowser for help on using the repository browser.

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