2 * OpenAL cross platform audio library
3 * Copyright (C) 2011 by Chris Robinson
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 * Or go to http://www.gnu.org/copyleft/lgpl.html
31 #include "bformatdec.h"
38 /* Current data set limits defined by the makehrtf utility. */
39 #define MIN_IR_SIZE (8)
40 #define MAX_IR_SIZE (512)
41 #define MOD_IR_SIZE (8)
43 #define MIN_EV_COUNT (5)
44 #define MAX_EV_COUNT (128)
46 #define MIN_AZ_COUNT (1)
47 #define MAX_AZ_COUNT (128)
50 struct HrtfEntry
*next
;
55 static const ALchar magicMarker00
[8] = "MinPHR00";
56 static const ALchar magicMarker01
[8] = "MinPHR01";
58 /* First value for pass-through coefficients (remaining are 0), used for omni-
59 * directional sounds. */
60 static const ALfloat PassthruCoeff
= 0.707106781187f
/*sqrt(0.5)*/;
62 static ATOMIC_FLAG LoadedHrtfLock
= ATOMIC_FLAG_INIT
;
63 static struct HrtfEntry
*LoadedHrtfs
= NULL
;
66 /* Calculate the elevation index given the polar elevation in radians. This
67 * will return an index between 0 and (evcount - 1). Assumes the FPU is in
70 static ALsizei
CalcEvIndex(ALsizei evcount
, ALfloat ev
, ALfloat
*mu
)
73 ev
= (F_PI_2
+ev
) * (evcount
-1) / F_PI
;
74 idx
= mini(fastf2i(ev
), evcount
-1);
80 /* Calculate the azimuth index given the polar azimuth in radians. This will
81 * return an index between 0 and (azcount - 1). Assumes the FPU is in round-to-
84 static ALsizei
CalcAzIndex(ALsizei azcount
, ALfloat az
, ALfloat
*mu
)
87 az
= (F_TAU
+az
) * azcount
/ F_TAU
;
89 idx
= fastf2i(az
) % azcount
;
90 *mu
= az
- floorf(az
);
94 /* Calculates static HRIR coefficients and delays for the given polar elevation
95 * and azimuth in radians. The coefficients are normalized.
97 void GetHrtfCoeffs(const struct Hrtf
*Hrtf
, ALfloat elevation
, ALfloat azimuth
, ALfloat spread
, ALfloat (*coeffs
)[2], ALsizei
*delays
)
99 ALsizei evidx
, azidx
, idx
[4];
106 dirfact
= 1.0f
- (spread
/ F_TAU
);
108 /* Claculate the lower elevation index. */
109 evidx
= CalcEvIndex(Hrtf
->evCount
, elevation
, &emu
);
110 evoffset
= Hrtf
->evOffset
[evidx
];
112 /* Calculate lower azimuth index. */
113 azidx
= CalcAzIndex(Hrtf
->azCount
[evidx
], azimuth
, &amu
[0]);
115 /* Calculate the lower HRIR indices. */
116 idx
[0] = evoffset
+ azidx
;
117 idx
[1] = evoffset
+ ((azidx
+1) % Hrtf
->azCount
[evidx
]);
118 if(evidx
< Hrtf
->evCount
-1)
120 /* Increment elevation to the next (upper) index. */
122 evoffset
= Hrtf
->evOffset
[evidx
];
124 /* Calculate upper azimuth index. */
125 azidx
= CalcAzIndex(Hrtf
->azCount
[evidx
], azimuth
, &amu
[1]);
127 /* Calculate the upper HRIR indices. */
128 idx
[2] = evoffset
+ azidx
;
129 idx
[3] = evoffset
+ ((azidx
+1) % Hrtf
->azCount
[evidx
]);
133 /* If the lower elevation is the top index, the upper elevation is the
141 /* Calculate bilinear blending weights, attenuated according to the
142 * directional panning factor.
144 blend
[0] = (1.0f
-emu
) * (1.0f
-amu
[0]) * dirfact
;
145 blend
[1] = (1.0f
-emu
) * ( amu
[0]) * dirfact
;
146 blend
[2] = ( emu
) * (1.0f
-amu
[1]) * dirfact
;
147 blend
[3] = ( emu
) * ( amu
[1]) * dirfact
;
149 /* Calculate the blended HRIR delays. */
151 Hrtf
->delays
[idx
[0]][0]*blend
[0] + Hrtf
->delays
[idx
[1]][0]*blend
[1] +
152 Hrtf
->delays
[idx
[2]][0]*blend
[2] + Hrtf
->delays
[idx
[3]][0]*blend
[3] + 0.5f
155 Hrtf
->delays
[idx
[0]][1]*blend
[0] + Hrtf
->delays
[idx
[1]][1]*blend
[1] +
156 Hrtf
->delays
[idx
[2]][1]*blend
[2] + Hrtf
->delays
[idx
[3]][1]*blend
[3] + 0.5f
159 /* Calculate the sample offsets for the HRIR indices. */
160 idx
[0] *= Hrtf
->irSize
;
161 idx
[1] *= Hrtf
->irSize
;
162 idx
[2] *= Hrtf
->irSize
;
163 idx
[3] *= Hrtf
->irSize
;
165 /* Calculate the blended HRIR coefficients. */
166 coeffs
[0][0] = PassthruCoeff
* (1.0f
-dirfact
);
167 coeffs
[0][1] = PassthruCoeff
* (1.0f
-dirfact
);
168 for(i
= 1;i
< Hrtf
->irSize
;i
++)
175 for(i
= 0;i
< Hrtf
->irSize
;i
++)
177 coeffs
[i
][0] += Hrtf
->coeffs
[idx
[c
]+i
][0] * blend
[c
];
178 coeffs
[i
][1] += Hrtf
->coeffs
[idx
[c
]+i
][1] * blend
[c
];
184 ALsizei
BuildBFormatHrtf(const struct Hrtf
*Hrtf
, DirectHrtfState
*state
, ALsizei NumChannels
, const ALfloat (*restrict AmbiPoints
)[2], const ALfloat (*restrict AmbiMatrix
)[2][MAX_AMBI_COEFFS
], ALsizei AmbiCount
)
186 /* Set this to 2 for dual-band HRTF processing. May require a higher quality
187 * band-splitter, or better calculation of the new IR length to deal with the
188 * tail generated by the filter.
191 BandSplitter splitter
;
192 ALsizei idx
[HRTF_AMBI_MAX_CHANNELS
];
193 ALsizei min_delay
= HRTF_HISTORY_LENGTH
;
194 ALfloat temps
[3][HRIR_LENGTH
];
195 ALsizei max_length
= 0;
198 for(c
= 0;c
< AmbiCount
;c
++)
204 /* Calculate elevation index. */
205 evidx
= (ALsizei
)floorf((F_PI_2
+ AmbiPoints
[c
][0]) *
206 (Hrtf
->evCount
-1)/F_PI
+ 0.5f
);
207 evidx
= mini(evidx
, Hrtf
->evCount
-1);
209 azcount
= Hrtf
->azCount
[evidx
];
210 evoffset
= Hrtf
->evOffset
[evidx
];
212 /* Calculate azimuth index for this elevation. */
213 azidx
= (ALsizei
)floorf((F_TAU
+AmbiPoints
[c
][1]) *
214 azcount
/F_TAU
+ 0.5f
) % azcount
;
216 /* Calculate indices for left and right channels. */
217 idx
[c
] = evoffset
+ azidx
;
219 min_delay
= mini(min_delay
, mini(Hrtf
->delays
[idx
[c
]][0], Hrtf
->delays
[idx
[c
]][1]));
222 memset(temps
, 0, sizeof(temps
));
223 bandsplit_init(&splitter
, 400.0f
/ (ALfloat
)Hrtf
->sampleRate
);
224 for(c
= 0;c
< AmbiCount
;c
++)
226 const ALfloat (*fir
)[2] = &Hrtf
->coeffs
[idx
[c
] * Hrtf
->irSize
];
227 ALsizei ldelay
= Hrtf
->delays
[idx
[c
]][0] - min_delay
;
228 ALsizei rdelay
= Hrtf
->delays
[idx
[c
]][1] - min_delay
;
230 max_length
= maxi(max_length
,
231 mini(maxi(ldelay
, rdelay
) + Hrtf
->irSize
, HRIR_LENGTH
)
236 for(i
= 0;i
< NumChannels
;++i
)
238 ALsizei lidx
= ldelay
, ridx
= rdelay
;
240 while(lidx
< HRIR_LENGTH
&& ridx
< HRIR_LENGTH
&& j
< Hrtf
->irSize
)
242 state
->Chan
[i
].Coeffs
[lidx
++][0] += fir
[j
][0] * AmbiMatrix
[c
][0][i
];
243 state
->Chan
[i
].Coeffs
[ridx
++][1] += fir
[j
][1] * AmbiMatrix
[c
][0][i
];
250 /* Band-split left HRIR into low and high frequency responses. */
251 bandsplit_clear(&splitter
);
252 for(i
= 0;i
< Hrtf
->irSize
;i
++)
253 temps
[2][i
] = fir
[i
][0];
254 bandsplit_process(&splitter
, temps
[0], temps
[1], temps
[2], HRIR_LENGTH
);
256 /* Apply left ear response with delay. */
257 for(i
= 0;i
< NumChannels
;++i
)
259 for(b
= 0;b
< NUM_BANDS
;b
++)
261 ALsizei lidx
= ldelay
;
263 while(lidx
< HRIR_LENGTH
)
264 state
->Chan
[i
].Coeffs
[lidx
++][0] += temps
[b
][j
++] * AmbiMatrix
[c
][b
][i
];
268 /* Band-split right HRIR into low and high frequency responses. */
269 bandsplit_clear(&splitter
);
270 for(i
= 0;i
< Hrtf
->irSize
;i
++)
271 temps
[2][i
] = fir
[i
][1];
272 bandsplit_process(&splitter
, temps
[0], temps
[1], temps
[2], HRIR_LENGTH
);
274 /* Apply right ear response with delay. */
275 for(i
= 0;i
< NumChannels
;++i
)
277 for(b
= 0;b
< NUM_BANDS
;b
++)
279 ALsizei ridx
= rdelay
;
281 while(ridx
< HRIR_LENGTH
)
282 state
->Chan
[i
].Coeffs
[ridx
++][1] += temps
[b
][j
++] * AmbiMatrix
[c
][b
][i
];
287 /* Round up to the next IR size multiple. */
288 max_length
= RoundUp(max_length
, MOD_IR_SIZE
);
290 TRACE("Skipped min delay: %d, new combined length: %d\n", min_delay
, max_length
);
296 static struct Hrtf
*CreateHrtfStore(ALuint rate
, ALsizei irSize
, ALsizei evCount
, ALsizei irCount
,
297 const ALubyte
*azCount
, const ALushort
*evOffset
,
298 const ALfloat (*coeffs
)[2], const ALubyte (*delays
)[2],
299 const char *filename
)
304 total
= sizeof(struct Hrtf
);
305 total
+= sizeof(Hrtf
->azCount
[0])*evCount
;
306 total
= RoundUp(total
, sizeof(ALushort
)); /* Align for ushort fields */
307 total
+= sizeof(Hrtf
->evOffset
[0])*evCount
;
308 total
= RoundUp(total
, 16); /* Align for coefficients using SIMD */
309 total
+= sizeof(Hrtf
->coeffs
[0])*irSize
*irCount
;
310 total
+= sizeof(Hrtf
->delays
[0])*irCount
;
312 Hrtf
= al_calloc(16, total
);
314 ERR("Out of memory allocating storage for %s.\n", filename
);
317 uintptr_t offset
= sizeof(struct Hrtf
);
318 char *base
= (char*)Hrtf
;
321 ALubyte (*_delays
)[2];
322 ALfloat (*_coeffs
)[2];
325 InitRef(&Hrtf
->ref
, 0);
326 Hrtf
->sampleRate
= rate
;
327 Hrtf
->irSize
= irSize
;
328 Hrtf
->evCount
= evCount
;
330 /* Set up pointers to storage following the main HRTF struct. */
331 _azCount
= (ALubyte
*)(base
+ offset
); Hrtf
->azCount
= _azCount
;
332 offset
+= sizeof(_azCount
[0])*evCount
;
334 offset
= RoundUp(offset
, sizeof(ALushort
)); /* Align for ushort fields */
335 _evOffset
= (ALushort
*)(base
+ offset
); Hrtf
->evOffset
= _evOffset
;
336 offset
+= sizeof(_evOffset
[0])*evCount
;
338 offset
= RoundUp(offset
, 16); /* Align for coefficients using SIMD */
339 _coeffs
= (ALfloat(*)[2])(base
+ offset
); Hrtf
->coeffs
= _coeffs
;
340 offset
+= sizeof(_coeffs
[0])*irSize
*irCount
;
342 _delays
= (ALubyte(*)[2])(base
+ offset
); Hrtf
->delays
= _delays
;
343 offset
+= sizeof(_delays
[0])*irCount
;
345 /* Copy input data to storage. */
346 for(i
= 0;i
< evCount
;i
++) _azCount
[i
] = azCount
[i
];
347 for(i
= 0;i
< evCount
;i
++) _evOffset
[i
] = evOffset
[i
];
348 for(i
= 0;i
< irSize
*irCount
;i
++)
350 _coeffs
[i
][0] = coeffs
[i
][0];
351 _coeffs
[i
][1] = coeffs
[i
][1];
353 for(i
= 0;i
< irCount
;i
++)
355 _delays
[i
][0] = delays
[i
][0];
356 _delays
[i
][1] = delays
[i
][1];
359 assert(offset
== total
);
365 static ALubyte
GetLE_ALubyte(const ALubyte
**data
, size_t *len
)
367 ALubyte ret
= (*data
)[0];
368 *data
+= 1; *len
-= 1;
372 static ALshort
GetLE_ALshort(const ALubyte
**data
, size_t *len
)
374 ALshort ret
= (*data
)[0] | ((*data
)[1]<<8);
375 *data
+= 2; *len
-= 2;
379 static ALushort
GetLE_ALushort(const ALubyte
**data
, size_t *len
)
381 ALushort ret
= (*data
)[0] | ((*data
)[1]<<8);
382 *data
+= 2; *len
-= 2;
386 static ALint
GetLE_ALuint(const ALubyte
**data
, size_t *len
)
388 ALint ret
= (*data
)[0] | ((*data
)[1]<<8) | ((*data
)[2]<<16) | ((*data
)[3]<<24);
389 *data
+= 4; *len
-= 4;
393 static const ALubyte
*Get_ALubytePtr(const ALubyte
**data
, size_t *len
, size_t size
)
395 const ALubyte
*ret
= *data
;
396 *data
+= size
; *len
-= size
;
400 static struct Hrtf
*LoadHrtf00(const ALubyte
*data
, size_t datalen
, const char *filename
)
402 const ALubyte maxDelay
= HRTF_HISTORY_LENGTH
-1;
403 struct Hrtf
*Hrtf
= NULL
;
404 ALboolean failed
= AL_FALSE
;
406 ALushort irCount
= 0;
409 ALubyte
*azCount
= NULL
;
410 ALushort
*evOffset
= NULL
;
411 ALfloat (*coeffs
)[2] = NULL
;
412 ALubyte (*delays
)[2] = NULL
;
417 ERR("Unexpected end of %s data (req %d, rem "SZFMT
")\n", filename
, 9, datalen
);
421 rate
= GetLE_ALuint(&data
, &datalen
);
423 irCount
= GetLE_ALushort(&data
, &datalen
);
425 irSize
= GetLE_ALushort(&data
, &datalen
);
427 evCount
= GetLE_ALubyte(&data
, &datalen
);
429 if(irSize
< MIN_IR_SIZE
|| irSize
> MAX_IR_SIZE
|| (irSize
%MOD_IR_SIZE
))
431 ERR("Unsupported HRIR size: irSize=%d (%d to %d by %d)\n",
432 irSize
, MIN_IR_SIZE
, MAX_IR_SIZE
, MOD_IR_SIZE
);
435 if(evCount
< MIN_EV_COUNT
|| evCount
> MAX_EV_COUNT
)
437 ERR("Unsupported elevation count: evCount=%d (%d to %d)\n",
438 evCount
, MIN_EV_COUNT
, MAX_EV_COUNT
);
444 if(datalen
< evCount
*2u)
446 ERR("Unexpected end of %s data (req %d, rem "SZFMT
")\n", filename
, evCount
*2, datalen
);
450 azCount
= malloc(sizeof(azCount
[0])*evCount
);
451 evOffset
= malloc(sizeof(evOffset
[0])*evCount
);
452 if(azCount
== NULL
|| evOffset
== NULL
)
454 ERR("Out of memory.\n");
460 evOffset
[0] = GetLE_ALushort(&data
, &datalen
);
461 for(i
= 1;i
< evCount
;i
++)
463 evOffset
[i
] = GetLE_ALushort(&data
, &datalen
);
464 if(evOffset
[i
] <= evOffset
[i
-1])
466 ERR("Invalid evOffset: evOffset[%d]=%d (last=%d)\n",
467 i
, evOffset
[i
], evOffset
[i
-1]);
471 azCount
[i
-1] = evOffset
[i
] - evOffset
[i
-1];
472 if(azCount
[i
-1] < MIN_AZ_COUNT
|| azCount
[i
-1] > MAX_AZ_COUNT
)
474 ERR("Unsupported azimuth count: azCount[%d]=%d (%d to %d)\n",
475 i
-1, azCount
[i
-1], MIN_AZ_COUNT
, MAX_AZ_COUNT
);
479 if(irCount
<= evOffset
[i
-1])
481 ERR("Invalid evOffset: evOffset[%d]=%d (irCount=%d)\n",
482 i
-1, evOffset
[i
-1], irCount
);
486 azCount
[i
-1] = irCount
- evOffset
[i
-1];
487 if(azCount
[i
-1] < MIN_AZ_COUNT
|| azCount
[i
-1] > MAX_AZ_COUNT
)
489 ERR("Unsupported azimuth count: azCount[%d]=%d (%d to %d)\n",
490 i
-1, azCount
[i
-1], MIN_AZ_COUNT
, MAX_AZ_COUNT
);
497 coeffs
= malloc(sizeof(coeffs
[0])*irSize
*irCount
);
498 delays
= malloc(sizeof(delays
[0])*irCount
);
499 if(coeffs
== NULL
|| delays
== NULL
)
501 ERR("Out of memory.\n");
508 size_t reqsize
= 2*irSize
*irCount
+ irCount
;
509 if(datalen
< reqsize
)
511 ERR("Unexpected end of %s data (req "SZFMT
", rem "SZFMT
")\n",
512 filename
, reqsize
, datalen
);
519 for(i
= 0;i
< irCount
;i
++)
521 for(j
= 0;j
< irSize
;j
++)
522 coeffs
[i
*irSize
+ j
][0] = GetLE_ALshort(&data
, &datalen
) / 32768.0f
;
525 for(i
= 0;i
< irCount
;i
++)
527 delays
[i
][0] = GetLE_ALubyte(&data
, &datalen
);
528 if(delays
[i
][0] > maxDelay
)
530 ERR("Invalid delays[%d]: %d (%d)\n", i
, delays
[i
][0], maxDelay
);
538 /* Mirror the left ear responses to the right ear. */
539 for(i
= 0;i
< evCount
;i
++)
541 ALushort evoffset
= evOffset
[i
];
542 ALubyte azcount
= azCount
[i
];
543 for(j
= 0;j
< azcount
;j
++)
545 ALsizei lidx
= evoffset
+ j
;
546 ALsizei ridx
= evoffset
+ ((azcount
-j
) % azcount
);
549 for(k
= 0;k
< irSize
;k
++)
550 coeffs
[ridx
*irSize
+ k
][1] = coeffs
[lidx
*irSize
+ k
][0];
551 delays
[ridx
][1] = delays
[lidx
][0];
555 Hrtf
= CreateHrtfStore(rate
, irSize
, evCount
, irCount
, azCount
,
556 evOffset
, coeffs
, delays
, filename
);
566 static struct Hrtf
*LoadHrtf01(const ALubyte
*data
, size_t datalen
, const char *filename
)
568 const ALubyte maxDelay
= HRTF_HISTORY_LENGTH
-1;
569 struct Hrtf
*Hrtf
= NULL
;
570 ALboolean failed
= AL_FALSE
;
572 ALushort irCount
= 0;
575 const ALubyte
*azCount
= NULL
;
576 ALushort
*evOffset
= NULL
;
577 ALfloat (*coeffs
)[2] = NULL
;
578 ALubyte (*delays
)[2] = NULL
;
583 ERR("Unexpected end of %s data (req %d, rem "SZFMT
"\n", filename
, 6, datalen
);
587 rate
= GetLE_ALuint(&data
, &datalen
);
589 irSize
= GetLE_ALubyte(&data
, &datalen
);
591 evCount
= GetLE_ALubyte(&data
, &datalen
);
593 if(irSize
< MIN_IR_SIZE
|| irSize
> MAX_IR_SIZE
|| (irSize
%MOD_IR_SIZE
))
595 ERR("Unsupported HRIR size: irSize=%d (%d to %d by %d)\n",
596 irSize
, MIN_IR_SIZE
, MAX_IR_SIZE
, MOD_IR_SIZE
);
599 if(evCount
< MIN_EV_COUNT
|| evCount
> MAX_EV_COUNT
)
601 ERR("Unsupported elevation count: evCount=%d (%d to %d)\n",
602 evCount
, MIN_EV_COUNT
, MAX_EV_COUNT
);
608 if(datalen
< evCount
)
610 ERR("Unexpected end of %s data (req %d, rem "SZFMT
"\n", filename
, evCount
, datalen
);
614 azCount
= Get_ALubytePtr(&data
, &datalen
, evCount
);
616 evOffset
= malloc(sizeof(evOffset
[0])*evCount
);
617 if(azCount
== NULL
|| evOffset
== NULL
)
619 ERR("Out of memory.\n");
625 for(i
= 0;i
< evCount
;i
++)
627 if(azCount
[i
] < MIN_AZ_COUNT
|| azCount
[i
] > MAX_AZ_COUNT
)
629 ERR("Unsupported azimuth count: azCount[%d]=%d (%d to %d)\n",
630 i
, azCount
[i
], MIN_AZ_COUNT
, MAX_AZ_COUNT
);
639 irCount
= azCount
[0];
640 for(i
= 1;i
< evCount
;i
++)
642 evOffset
[i
] = evOffset
[i
-1] + azCount
[i
-1];
643 irCount
+= azCount
[i
];
646 coeffs
= malloc(sizeof(coeffs
[0])*irSize
*irCount
);
647 delays
= malloc(sizeof(delays
[0])*irCount
);
648 if(coeffs
== NULL
|| delays
== NULL
)
650 ERR("Out of memory.\n");
657 size_t reqsize
= 2*irSize
*irCount
+ irCount
;
658 if(datalen
< reqsize
)
660 ERR("Unexpected end of %s data (req "SZFMT
", rem "SZFMT
"\n",
661 filename
, reqsize
, datalen
);
668 for(i
= 0;i
< irCount
;i
++)
670 for(j
= 0;j
< irSize
;j
++)
671 coeffs
[i
*irSize
+ j
][0] = GetLE_ALshort(&data
, &datalen
) / 32768.0f
;
674 for(i
= 0;i
< irCount
;i
++)
676 delays
[i
][0] = GetLE_ALubyte(&data
, &datalen
);
677 if(delays
[i
][0] > maxDelay
)
679 ERR("Invalid delays[%d]: %d (%d)\n", i
, delays
[i
][0], maxDelay
);
687 /* Mirror the left ear responses to the right ear. */
688 for(i
= 0;i
< evCount
;i
++)
690 ALushort evoffset
= evOffset
[i
];
691 ALubyte azcount
= azCount
[i
];
692 for(j
= 0;j
< azcount
;j
++)
694 ALsizei lidx
= evoffset
+ j
;
695 ALsizei ridx
= evoffset
+ ((azcount
-j
) % azcount
);
698 for(k
= 0;k
< irSize
;k
++)
699 coeffs
[ridx
*irSize
+ k
][1] = coeffs
[lidx
*irSize
+ k
][0];
700 delays
[ridx
][1] = delays
[lidx
][0];
704 Hrtf
= CreateHrtfStore(rate
, irSize
, evCount
, irCount
, azCount
,
705 evOffset
, coeffs
, delays
, filename
);
715 static void AddFileEntry(vector_EnumeratedHrtf
*list
, const_al_string filename
)
717 EnumeratedHrtf entry
= { AL_STRING_INIT_STATIC(), NULL
};
718 struct HrtfEntry
*loaded_entry
;
719 const EnumeratedHrtf
*iter
;
724 /* Check if this file has already been loaded globally. */
725 loaded_entry
= LoadedHrtfs
;
728 if(alstr_cmp_cstr(filename
, loaded_entry
->filename
) == 0)
730 /* Check if this entry has already been added to the list. */
731 #define MATCH_ENTRY(i) (loaded_entry == (i)->hrtf)
732 VECTOR_FIND_IF(iter
, const EnumeratedHrtf
, *list
, MATCH_ENTRY
);
733 if(iter
!= VECTOR_END(*list
))
735 TRACE("Skipping duplicate file entry %s\n", alstr_get_cstr(filename
));
742 loaded_entry
= loaded_entry
->next
;
747 TRACE("Got new file \"%s\"\n", alstr_get_cstr(filename
));
749 loaded_entry
= al_calloc(DEF_ALIGN
,
750 FAM_SIZE(struct HrtfEntry
, filename
, alstr_length(filename
)+1)
752 loaded_entry
->next
= LoadedHrtfs
;
753 loaded_entry
->handle
= NULL
;
754 strcpy(loaded_entry
->filename
, alstr_get_cstr(filename
));
755 LoadedHrtfs
= loaded_entry
;
758 /* TODO: Get a human-readable name from the HRTF data (possibly coming in a
760 name
= strrchr(alstr_get_cstr(filename
), '/');
761 if(!name
) name
= strrchr(alstr_get_cstr(filename
), '\\');
762 if(!name
) name
= alstr_get_cstr(filename
);
765 ext
= strrchr(name
, '.');
770 alstr_copy_cstr(&entry
.name
, name
);
772 alstr_copy_range(&entry
.name
, name
, ext
);
776 snprintf(str
, sizeof(str
), " #%d", i
+1);
777 alstr_append_cstr(&entry
.name
, str
);
781 #define MATCH_NAME(i) (alstr_cmp(entry.name, (i)->name) == 0)
782 VECTOR_FIND_IF(iter
, const EnumeratedHrtf
, *list
, MATCH_NAME
);
784 } while(iter
!= VECTOR_END(*list
));
785 entry
.hrtf
= loaded_entry
;
787 TRACE("Adding entry \"%s\" from file \"%s\"\n", alstr_get_cstr(entry
.name
),
788 alstr_get_cstr(filename
));
789 VECTOR_PUSH_BACK(*list
, entry
);
792 /* Unfortunate that we have to duplicate AddFileEntry to take a memory buffer
793 * for input instead of opening the given filename.
795 static void AddBuiltInEntry(vector_EnumeratedHrtf
*list
, const_al_string filename
, size_t residx
)
797 EnumeratedHrtf entry
= { AL_STRING_INIT_STATIC(), NULL
};
798 struct HrtfEntry
*loaded_entry
;
799 struct Hrtf
*hrtf
= NULL
;
800 const EnumeratedHrtf
*iter
;
805 loaded_entry
= LoadedHrtfs
;
808 if(alstr_cmp_cstr(filename
, loaded_entry
->filename
) == 0)
810 #define MATCH_ENTRY(i) (loaded_entry == (i)->hrtf)
811 VECTOR_FIND_IF(iter
, const EnumeratedHrtf
, *list
, MATCH_ENTRY
);
812 if(iter
!= VECTOR_END(*list
))
814 TRACE("Skipping duplicate file entry %s\n", alstr_get_cstr(filename
));
821 loaded_entry
= loaded_entry
->next
;
826 size_t namelen
= alstr_length(filename
)+32;
828 TRACE("Got new file \"%s\"\n", alstr_get_cstr(filename
));
830 loaded_entry
= al_calloc(DEF_ALIGN
,
831 FAM_SIZE(struct HrtfEntry
, filename
, namelen
)
833 loaded_entry
->next
= LoadedHrtfs
;
834 loaded_entry
->handle
= hrtf
;
835 snprintf(loaded_entry
->filename
, namelen
, "!"SZFMT
"_%s",
836 residx
, alstr_get_cstr(filename
));
837 LoadedHrtfs
= loaded_entry
;
840 /* TODO: Get a human-readable name from the HRTF data (possibly coming in a
842 name
= strrchr(alstr_get_cstr(filename
), '/');
843 if(!name
) name
= strrchr(alstr_get_cstr(filename
), '\\');
844 if(!name
) name
= alstr_get_cstr(filename
);
847 ext
= strrchr(name
, '.');
852 alstr_copy_cstr(&entry
.name
, name
);
854 alstr_copy_range(&entry
.name
, name
, ext
);
858 snprintf(str
, sizeof(str
), " #%d", i
+1);
859 alstr_append_cstr(&entry
.name
, str
);
863 #define MATCH_NAME(i) (alstr_cmp(entry.name, (i)->name) == 0)
864 VECTOR_FIND_IF(iter
, const EnumeratedHrtf
, *list
, MATCH_NAME
);
866 } while(iter
!= VECTOR_END(*list
));
867 entry
.hrtf
= loaded_entry
;
869 TRACE("Adding built-in entry \"%s\"\n", alstr_get_cstr(entry
.name
));
870 VECTOR_PUSH_BACK(*list
, entry
);
874 #define IDR_DEFAULT_44100_MHR 1
875 #define IDR_DEFAULT_48000_MHR 2
877 #ifndef ALSOFT_EMBED_HRTF_DATA
879 static const ALubyte
*GetResource(int UNUSED(name
), size_t *size
)
887 #include "default-44100.mhr.h"
888 #include "default-48000.mhr.h"
890 static const ALubyte
*GetResource(int name
, size_t *size
)
892 if(name
== IDR_DEFAULT_44100_MHR
)
894 *size
= sizeof(hrtf_default_44100
);
895 return hrtf_default_44100
;
897 if(name
== IDR_DEFAULT_48000_MHR
)
899 *size
= sizeof(hrtf_default_48000
);
900 return hrtf_default_48000
;
907 vector_EnumeratedHrtf
EnumerateHrtf(const_al_string devname
)
909 vector_EnumeratedHrtf list
= VECTOR_INIT_STATIC();
910 const char *defaulthrtf
= "";
911 const char *pathlist
= "";
912 bool usedefaults
= true;
914 if(ConfigValueStr(alstr_get_cstr(devname
), NULL
, "hrtf-paths", &pathlist
))
916 al_string pname
= AL_STRING_INIT_STATIC();
917 while(pathlist
&& *pathlist
)
919 const char *next
, *end
;
921 while(isspace(*pathlist
) || *pathlist
== ',')
923 if(*pathlist
== '\0')
926 next
= strchr(pathlist
, ',');
931 end
= pathlist
+ strlen(pathlist
);
935 while(end
!= pathlist
&& isspace(*(end
-1)))
939 vector_al_string flist
;
942 alstr_copy_range(&pname
, pathlist
, end
);
944 flist
= SearchDataFiles(".mhr", alstr_get_cstr(pname
));
945 for(i
= 0;i
< VECTOR_SIZE(flist
);i
++)
946 AddFileEntry(&list
, VECTOR_ELEM(flist
, i
));
947 VECTOR_FOR_EACH(al_string
, flist
, alstr_reset
);
948 VECTOR_DEINIT(flist
);
956 else if(ConfigValueExists(alstr_get_cstr(devname
), NULL
, "hrtf_tables"))
957 ERR("The hrtf_tables option is deprecated, please use hrtf-paths instead.\n");
961 al_string ename
= AL_STRING_INIT_STATIC();
962 vector_al_string flist
;
963 const ALubyte
*rdata
;
966 flist
= SearchDataFiles(".mhr", "openal/hrtf");
967 for(i
= 0;i
< VECTOR_SIZE(flist
);i
++)
968 AddFileEntry(&list
, VECTOR_ELEM(flist
, i
));
969 VECTOR_FOR_EACH(al_string
, flist
, alstr_reset
);
970 VECTOR_DEINIT(flist
);
972 rdata
= GetResource(IDR_DEFAULT_44100_MHR
, &rsize
);
973 if(rdata
!= NULL
&& rsize
> 0)
975 alstr_copy_cstr(&ename
, "Built-In 44100hz");
976 AddBuiltInEntry(&list
, ename
, IDR_DEFAULT_44100_MHR
);
979 rdata
= GetResource(IDR_DEFAULT_48000_MHR
, &rsize
);
980 if(rdata
!= NULL
&& rsize
> 0)
982 alstr_copy_cstr(&ename
, "Built-In 48000hz");
983 AddBuiltInEntry(&list
, ename
, IDR_DEFAULT_48000_MHR
);
988 if(VECTOR_SIZE(list
) > 1 && ConfigValueStr(alstr_get_cstr(devname
), NULL
, "default-hrtf", &defaulthrtf
))
990 const EnumeratedHrtf
*iter
;
991 /* Find the preferred HRTF and move it to the front of the list. */
992 #define FIND_ENTRY(i) (alstr_cmp_cstr((i)->name, defaulthrtf) == 0)
993 VECTOR_FIND_IF(iter
, const EnumeratedHrtf
, list
, FIND_ENTRY
);
995 if(iter
== VECTOR_END(list
))
996 WARN("Failed to find default HRTF \"%s\"\n", defaulthrtf
);
997 else if(iter
!= VECTOR_BEGIN(list
))
999 EnumeratedHrtf entry
= *iter
;
1000 memmove(&VECTOR_ELEM(list
,1), &VECTOR_ELEM(list
,0),
1001 (iter
-VECTOR_BEGIN(list
))*sizeof(EnumeratedHrtf
));
1002 VECTOR_ELEM(list
,0) = entry
;
1009 void FreeHrtfList(vector_EnumeratedHrtf
*list
)
1011 #define CLEAR_ENTRY(i) alstr_reset(&(i)->name)
1012 VECTOR_FOR_EACH(EnumeratedHrtf
, *list
, CLEAR_ENTRY
);
1013 VECTOR_DEINIT(*list
);
1017 struct Hrtf
*GetLoadedHrtf(struct HrtfEntry
*entry
)
1019 struct Hrtf
*hrtf
= NULL
;
1020 struct FileMapping fmap
;
1021 const ALubyte
*rdata
;
1027 while(ATOMIC_FLAG_TEST_AND_SET(&LoadedHrtfLock
, almemory_order_seq_cst
))
1032 hrtf
= entry
->handle
;
1039 if(sscanf(entry
->filename
, "!"SZFMT
"%c", &residx
, &ch
) == 2 && ch
== '_')
1041 name
= strchr(entry
->filename
, ch
)+1;
1043 TRACE("Loading %s...\n", name
);
1044 rdata
= GetResource(residx
, &rsize
);
1045 if(rdata
== NULL
|| rsize
== 0)
1047 ERR("Could not get resource "SZFMT
", %s\n", residx
, name
);
1053 name
= entry
->filename
;
1055 TRACE("Loading %s...\n", entry
->filename
);
1056 fmap
= MapFileToMem(entry
->filename
);
1057 if(fmap
.ptr
== NULL
)
1059 ERR("Could not open %s\n", entry
->filename
);
1067 if(rsize
< sizeof(magicMarker01
))
1068 ERR("%s data is too short ("SZFMT
" bytes)\n", name
, rsize
);
1069 else if(memcmp(rdata
, magicMarker01
, sizeof(magicMarker01
)) == 0)
1071 TRACE("Detected data set format v1\n");
1072 hrtf
= LoadHrtf01(rdata
+sizeof(magicMarker01
),
1073 rsize
-sizeof(magicMarker01
), name
1076 else if(memcmp(rdata
, magicMarker00
, sizeof(magicMarker00
)) == 0)
1078 TRACE("Detected data set format v0\n");
1079 hrtf
= LoadHrtf00(rdata
+sizeof(magicMarker00
),
1080 rsize
-sizeof(magicMarker00
), name
1084 ERR("Invalid header in %s: \"%.8s\"\n", name
, (const char*)rdata
);
1086 UnmapFileMem(&fmap
);
1090 ERR("Failed to load %s\n", name
);
1093 entry
->handle
= hrtf
;
1096 TRACE("Loaded HRTF support for format: %s %uhz\n",
1097 DevFmtChannelsString(DevFmtStereo
), hrtf
->sampleRate
);
1100 ATOMIC_FLAG_CLEAR(&LoadedHrtfLock
, almemory_order_seq_cst
);
1105 void Hrtf_IncRef(struct Hrtf
*hrtf
)
1107 uint ref
= IncrementRef(&hrtf
->ref
);
1108 TRACEREF("%p increasing refcount to %u\n", hrtf
, ref
);
1111 void Hrtf_DecRef(struct Hrtf
*hrtf
)
1113 struct HrtfEntry
*Hrtf
;
1114 uint ref
= DecrementRef(&hrtf
->ref
);
1115 TRACEREF("%p decreasing refcount to %u\n", hrtf
, ref
);
1118 while(ATOMIC_FLAG_TEST_AND_SET(&LoadedHrtfLock
, almemory_order_seq_cst
))
1124 /* Need to double-check that it's still unused, as another device
1125 * could've reacquired this HRTF after its reference went to 0 and
1126 * before the lock was taken.
1128 if(hrtf
== Hrtf
->handle
&& ReadRef(&hrtf
->ref
) == 0)
1130 al_free(Hrtf
->handle
);
1131 Hrtf
->handle
= NULL
;
1132 TRACE("Unloaded unused HRTF %s\n", Hrtf
->filename
);
1137 ATOMIC_FLAG_CLEAR(&LoadedHrtfLock
, almemory_order_seq_cst
);
1142 void FreeHrtfs(void)
1144 struct HrtfEntry
*Hrtf
= LoadedHrtfs
;
1149 struct HrtfEntry
*next
= Hrtf
->next
;
1150 al_free(Hrtf
->handle
);