VirtualBox

source: vbox/trunk/src/VBox/Devices/Audio/AudioMixBuffer-Convert.cpp.h@ 90778

Last change on this file since 90778 was 89405, checked in by vboxsync, 3 years ago

AudioMixBuffer: Fix buggy generic decoders. bugref:9890

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 11.1 KB
Line 
1/* $Id: AudioMixBuffer-Convert.cpp.h 89405 2021-05-31 13:58:57Z vboxsync $ */
2/** @file
3 * Audio mixing buffer - Format conversion template.
4 */
5
6/*
7 * Copyright (C) 2014-2021 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/* used to be: #define AUDMIXBUF_CONVERT(a_Name, a_Type, a_Min, a_Max, a_fSigned, a_cShift) */
20
21/* Clips a specific output value to a single sample value. */
22DECLINLINE(int32_t) RT_CONCAT(audioMixBufSampleFrom,a_Name)(a_Type aVal)
23{
24 /* left shifting of signed values is not defined, therefore the intermediate uint64_t cast */
25 if (a_fSigned)
26 return (int32_t) (((uint32_t) ((int32_t) aVal )) << (32 - a_cShift));
27 return (int32_t) (((uint32_t) ((int32_t) aVal - ((a_Max >> 1) + 1))) << (32 - a_cShift));
28}
29
30/* Clips a single sample value to a specific output value. */
31DECLINLINE(a_Type) RT_CONCAT(audioMixBufSampleTo,a_Name)(int32_t iVal)
32{
33 if (a_fSigned)
34 return (a_Type) (iVal >> (32 - a_cShift));
35 return (a_Type) ((iVal >> (32 - a_cShift)) + ((a_Max >> 1) + 1));
36}
37
38/* Encoders for peek: */
39
40/* Generic */
41static DECLCALLBACK(void) RT_CONCAT(audioMixBufEncodeGeneric,a_Name)(void *pvDst, int32_t const *pi32Src, uint32_t cFrames,
42 PAUDIOMIXBUFPEEKSTATE pState)
43{
44 RT_NOREF_PV(pState);
45 uintptr_t const cSrcChannels = pState->cSrcChannels;
46 uintptr_t const cDstChannels = pState->cDstChannels;
47 a_Type *pDst = (a_Type *)pvDst;
48 while (cFrames-- > 0)
49 {
50 uintptr_t idxDst = cDstChannels;
51 while (idxDst-- > 0)
52 {
53 int8_t idxSrc = pState->aidxChannelMap[idxDst];
54 if (idxSrc >= 0)
55 pDst[idxDst] = RT_CONCAT(audioMixBufSampleTo,a_Name)(pi32Src[idxSrc]);
56 else if (idxSrc != -2)
57 pDst[idxDst] = (a_fSigned) ? 0 : (a_Max >> 1);
58 else
59 pDst[idxDst] = 0;
60 }
61 pDst += cDstChannels;
62 pi32Src += cSrcChannels;
63 }
64}
65
66/* 2ch -> 2ch */
67static DECLCALLBACK(void) RT_CONCAT(audioMixBufEncode2ChTo2Ch,a_Name)(void *pvDst, int32_t const *pi32Src, uint32_t cFrames,
68 PAUDIOMIXBUFPEEKSTATE pState)
69{
70 RT_NOREF_PV(pState);
71 a_Type *pDst = (a_Type *)pvDst;
72 while (cFrames-- > 0)
73 {
74 pDst[0] = RT_CONCAT(audioMixBufSampleTo,a_Name)(pi32Src[0]);
75 pDst[1] = RT_CONCAT(audioMixBufSampleTo,a_Name)(pi32Src[1]);
76 AUDMIXBUF_MACRO_LOG(("%p: %RI32 / %RI32 => %RI32 / %RI32\n",
77 &pi32Src[0], pi32Src[0], pi32Src[1], (int32_t)pDst[0], (int32_t)pDst[1]));
78 pDst += 2;
79 pi32Src += 2;
80 }
81}
82
83/* 2ch -> 1ch */
84static DECLCALLBACK(void) RT_CONCAT(audioMixBufEncode2ChTo1Ch,a_Name)(void *pvDst, int32_t const *pi32Src, uint32_t cFrames,
85 PAUDIOMIXBUFPEEKSTATE pState)
86{
87 RT_NOREF_PV(pState);
88 a_Type *pDst = (a_Type *)pvDst;
89 while (cFrames-- > 0)
90 {
91 pDst[0] = RT_CONCAT(audioMixBufSampleTo,a_Name)(audioMixBufBlendSampleRet(pi32Src[0], pi32Src[1]));
92 pDst += 1;
93 pi32Src += 2;
94 }
95}
96
97/* 1ch -> 2ch */
98static DECLCALLBACK(void) RT_CONCAT(audioMixBufEncode1ChTo2Ch,a_Name)(void *pvDst, int32_t const *pi32Src, uint32_t cFrames,
99 PAUDIOMIXBUFPEEKSTATE pState)
100{
101 RT_NOREF_PV(pState);
102 a_Type *pDst = (a_Type *)pvDst;
103 while (cFrames-- > 0)
104 {
105 pDst[0] = pDst[1] = RT_CONCAT(audioMixBufSampleTo,a_Name)(pi32Src[0]);
106 pDst += 2;
107 pi32Src += 1;
108 }
109}
110/* 1ch -> 1ch */
111static DECLCALLBACK(void) RT_CONCAT(audioMixBufEncode1ChTo1Ch,a_Name)(void *pvDst, int32_t const *pi32Src, uint32_t cFrames,
112 PAUDIOMIXBUFPEEKSTATE pState)
113{
114 RT_NOREF_PV(pState);
115 a_Type *pDst = (a_Type *)pvDst;
116 while (cFrames-- > 0)
117 {
118 pDst[0] = RT_CONCAT(audioMixBufSampleTo,a_Name)(pi32Src[0]);
119 pDst += 1;
120 pi32Src += 1;
121 }
122}
123
124/* Decoders for write: */
125
126/* Generic */
127static DECLCALLBACK(void) RT_CONCAT(audioMixBufDecodeGeneric,a_Name)(int32_t *pi32Dst, void const *pvSrc, uint32_t cFrames,
128 PAUDIOMIXBUFWRITESTATE pState)
129{
130 RT_NOREF_PV(pState);
131 uintptr_t const cSrcChannels = pState->cSrcChannels;
132 uintptr_t const cDstChannels = pState->cDstChannels;
133 a_Type const *pSrc = (a_Type const *)pvSrc;
134 while (cFrames-- > 0)
135 {
136 uintptr_t idxDst = cDstChannels;
137 while (idxDst-- > 0)
138 {
139 int8_t idxSrc = pState->aidxChannelMap[idxDst];
140 if (idxSrc >= 0)
141 pi32Dst[idxDst] = RT_CONCAT(audioMixBufSampleFrom,a_Name)(pSrc[idxSrc]);
142 else if (idxSrc != -2)
143 pi32Dst[idxDst] = (a_fSigned) ? 0 : (a_Max >> 1);
144 else
145 pi32Dst[idxDst] = 0;
146 }
147 pi32Dst += cDstChannels;
148 pSrc += cSrcChannels;
149 }
150}
151
152/* 2ch -> 2ch */
153static DECLCALLBACK(void) RT_CONCAT(audioMixBufDecode2ChTo2Ch,a_Name)(int32_t *pi32Dst, void const *pvSrc, uint32_t cFrames,
154 PAUDIOMIXBUFWRITESTATE pState)
155{
156 RT_NOREF_PV(pState);
157 a_Type const *pSrc = (a_Type const *)pvSrc;
158 while (cFrames-- > 0)
159 {
160 pi32Dst[0] = RT_CONCAT(audioMixBufSampleFrom,a_Name)(pSrc[0]);
161 pi32Dst[1] = RT_CONCAT(audioMixBufSampleFrom,a_Name)(pSrc[1]);
162 AUDMIXBUF_MACRO_LOG(("%p: %RI32 / %RI32 => %RI32 / %RI32\n",
163 &pSrc[0], (int32_t)pSrc[0], (int32_t)pSrc[1], pi32Dst[0], pi32Dst[1]));
164 pi32Dst += 2;
165 pSrc += 2;
166 }
167}
168
169/* 2ch -> 1ch */
170static DECLCALLBACK(void) RT_CONCAT(audioMixBufDecode2ChTo1Ch,a_Name)(int32_t *pi32Dst, void const *pvSrc, uint32_t cFrames,
171 PAUDIOMIXBUFWRITESTATE pState)
172{
173 RT_NOREF_PV(pState);
174 a_Type const *pSrc = (a_Type const *)pvSrc;
175 while (cFrames-- > 0)
176 {
177 pi32Dst[0] = audioMixBufBlendSampleRet(RT_CONCAT(audioMixBufSampleFrom,a_Name)(pSrc[0]),
178 RT_CONCAT(audioMixBufSampleFrom,a_Name)(pSrc[1]));
179 pi32Dst += 1;
180 pSrc += 2;
181 }
182}
183
184/* 1ch -> 2ch */
185static DECLCALLBACK(void) RT_CONCAT(audioMixBufDecode1ChTo2Ch,a_Name)(int32_t *pi32Dst, void const *pvSrc, uint32_t cFrames,
186 PAUDIOMIXBUFWRITESTATE pState)
187{
188 RT_NOREF_PV(pState);
189 a_Type const *pSrc = (a_Type const *)pvSrc;
190 while (cFrames-- > 0)
191 {
192 pi32Dst[1] = pi32Dst[0] = RT_CONCAT(audioMixBufSampleFrom,a_Name)(pSrc[0]);
193 pi32Dst += 2;
194 pSrc += 1;
195 }
196}
197
198/* 1ch -> 1ch */
199static DECLCALLBACK(void) RT_CONCAT(audioMixBufDecode1ChTo1Ch,a_Name)(int32_t *pi32Dst, void const *pvSrc, uint32_t cFrames,
200 PAUDIOMIXBUFWRITESTATE pState)
201{
202 RT_NOREF_PV(pState);
203 a_Type const *pSrc = (a_Type const *)pvSrc;
204 while (cFrames-- > 0)
205 {
206 pi32Dst[0] = RT_CONCAT(audioMixBufSampleFrom,a_Name)(pSrc[0]);
207 pi32Dst += 1;
208 pSrc += 1;
209 }
210}
211
212/* Decoders for blending: */
213
214/* Generic */
215static DECLCALLBACK(void) RT_CONCAT3(audioMixBufDecodeGeneric,a_Name,Blend)(int32_t *pi32Dst, void const *pvSrc,
216 uint32_t cFrames, PAUDIOMIXBUFWRITESTATE pState)
217{
218 RT_NOREF_PV(pState);
219 uintptr_t const cSrcChannels = pState->cSrcChannels;
220 uintptr_t const cDstChannels = pState->cDstChannels;
221 a_Type const *pSrc = (a_Type const *)pvSrc;
222 while (cFrames-- > 0)
223 {
224 uintptr_t idxDst = cDstChannels;
225 while (idxDst-- > 0)
226 {
227 int8_t idxSrc = pState->aidxChannelMap[idxDst];
228 if (idxSrc >= 0)
229 audioMixBufBlendSample(&pi32Dst[idxDst], RT_CONCAT(audioMixBufSampleFrom,a_Name)(pSrc[idxSrc]));
230 }
231 pi32Dst += cDstChannels;
232 pSrc += cSrcChannels;
233 }
234}
235
236/* 2ch -> 2ch */
237static DECLCALLBACK(void) RT_CONCAT3(audioMixBufDecode2ChTo2Ch,a_Name,Blend)(int32_t *pi32Dst, void const *pvSrc,
238 uint32_t cFrames, PAUDIOMIXBUFWRITESTATE pState)
239{
240 RT_NOREF_PV(pState);
241 a_Type const *pSrc = (a_Type const *)pvSrc;
242 while (cFrames-- > 0)
243 {
244 audioMixBufBlendSample(&pi32Dst[0], RT_CONCAT(audioMixBufSampleFrom,a_Name)(pSrc[0]));
245 audioMixBufBlendSample(&pi32Dst[1], RT_CONCAT(audioMixBufSampleFrom,a_Name)(pSrc[1]));
246 AUDMIXBUF_MACRO_LOG(("%p: %RI32 / %RI32 => %RI32 / %RI32\n",
247 &pSrc[0], (int32_t)pSrc[0], (int32_t)pSrc[1], pi32Dst[0], pi32Dst[1]));
248 pi32Dst += 2;
249 pSrc += 2;
250 }
251}
252
253/* 2ch -> 1ch */
254static DECLCALLBACK(void) RT_CONCAT3(audioMixBufDecode2ChTo1Ch,a_Name,Blend)(int32_t *pi32Dst, void const *pvSrc,
255 uint32_t cFrames, PAUDIOMIXBUFWRITESTATE pState)
256{
257 RT_NOREF_PV(pState);
258 a_Type const *pSrc = (a_Type const *)pvSrc;
259 while (cFrames-- > 0)
260 {
261 audioMixBufBlendSample(&pi32Dst[0], audioMixBufBlendSampleRet(RT_CONCAT(audioMixBufSampleFrom,a_Name)(pSrc[0]),
262 RT_CONCAT(audioMixBufSampleFrom,a_Name)(pSrc[1])));
263 pi32Dst += 1;
264 pSrc += 2;
265 }
266}
267
268/* 1ch -> 2ch */
269static DECLCALLBACK(void) RT_CONCAT3(audioMixBufDecode1ChTo2Ch,a_Name,Blend)(int32_t *pi32Dst, void const *pvSrc,
270 uint32_t cFrames, PAUDIOMIXBUFWRITESTATE pState)
271{
272 RT_NOREF_PV(pState);
273 a_Type const *pSrc = (a_Type const *)pvSrc;
274 while (cFrames-- > 0)
275 {
276 int32_t const i32Src = RT_CONCAT(audioMixBufSampleFrom,a_Name)(pSrc[0]);
277 audioMixBufBlendSample(&pi32Dst[0], i32Src);
278 audioMixBufBlendSample(&pi32Dst[1], i32Src);
279 pi32Dst += 2;
280 pSrc += 1;
281 }
282}
283
284/* 1ch -> 1ch */
285static DECLCALLBACK(void) RT_CONCAT3(audioMixBufDecode1ChTo1Ch,a_Name,Blend)(int32_t *pi32Dst, void const *pvSrc,
286 uint32_t cFrames, PAUDIOMIXBUFWRITESTATE pState)
287{
288 RT_NOREF_PV(pState);
289 a_Type const *pSrc = (a_Type const *)pvSrc;
290 while (cFrames-- > 0)
291 {
292 audioMixBufBlendSample(&pi32Dst[0], RT_CONCAT(audioMixBufSampleFrom,a_Name)(pSrc[0]));
293 pi32Dst += 1;
294 pSrc += 1;
295 }
296}
297
298
299#undef a_Name
300#undef a_Type
301#undef a_Min
302#undef a_Max
303#undef a_fSigned
304#undef a_cShift
305
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use