kcat / openal-soft

OpenAL Soft is a software implementation of the OpenAL 3D audio API.
Other
2.2k stars 532 forks source link

Support for more than 128 azimuths. #351

Open PenguinDOOM opened 5 years ago

PenguinDOOM commented 5 years ago

I found an HRTF with a resolution of 1 °, but I can't do that because makemhr doesn't support azimuths over 128. Will you support more than 128 in the future?

kcat commented 5 years ago

I just increased the maximum allowed azimuth and elevation counts to support 1° resolution. Is this HRTF available publicly? Such high spatial resolution may be a bit overkill for OpenAL Soft, but it should at least work now.

PenguinDOOM commented 5 years ago

It is open to the public. https://www.york.ac.uk/sadie-project/database.html The creation of hrtf was successful, but the sound was not normal. I looked at the contents of wav, but I think it was because makemhr couldn't read data normally because the time was short (0.005s).

kcat commented 5 years ago

I missed that the mhr format stores the number of azimuths per elevation as a byte. This caused it to create invalid datasets if there were more than 255. I had to limit the number of azimuths to 255, but as a workaround, it will automatically scale down the number used. So rather than trying to use all 360 azimuths, it'll use every other one (180 azimuths with 2° resolution).

PenguinDOOM commented 5 years ago

When I built and used it with the latest commit, it crashed. It worked fine in 1.19.1 which edited hrft.c test_ku100-hrtf_latest-commit_1.19.1.zip

kcat commented 5 years ago

Hmm. The mhr is working here. Can you provide trace log files from both versions, and get a backtrace from the crash with the latest commit?

PenguinDOOM commented 5 years ago

Is this?

OpenAL32.dll!std::_Debug_message(const wchar_t message, const wchar_t file, unsigned int line) Line 17 C++ OpenAL32.dll!std::_Array_const_iterator<unsigned char,16>::operator+=(int _Off) Line 1794 C++ OpenAL32.dll!std::_Array_const_iterator<unsigned char,16>::operator+(int _Off) Line 1809 C++ OpenAL32.dll!`anonymous namespace'::InitHrtfPanning(ALCdevice device) Line 636 C++ OpenAL32.dll!aluInitRenderer(ALCdevice device, int hrtf_id, HrtfRequestMode hrtf_appreq, HrtfRequestMode hrtf_userreq) Line 808 C++ OpenAL32.dll!UpdateDeviceParams(ALCdevice device, const int attrList) Line 1959 C++ OpenAL32.dll!alcCreateContext(ALCdevice device, const int attrList) Line 3300 C++ fmodex.dll!10012510() Unknown [Frames below may be incorrect and/or missing, no symbols loaded for fmodex.dll]
fmodex.dll!100126b7() Unknown fmodex.dll!10013bd3() Unknown fmodex.dll!100842d1() Unknown fmodex.dll!10022e85() Unknown zandronum.exe!00ce7b52() Unknown zandronum.exe!00ce61a2() Unknown zandronum.exe!00ceac7a() Unknown zandronum.exe!00c15309() Unknown zandronum.exe!00c16ae7() Unknown zandronum.exe!00a686c3() Unknown zandronum.exe!00eae05b() Unknown [External Code] zandronum.exe!00a676f0() Unknown [External Code]

The latest commit call stack.

kcat commented 5 years ago

That looks like some kind of debug assertion or trap. I don't suppose any more information is provided? The code its pointing to looks fine, it's iterating over a few array elements and shouldn't be going out of bounds, but it's giving this when trying to increment the iterator.

Can you get a trace log too? Set the ALSOFT_LOGLEVEL environment variable to 3 when you run the app, and the library will print information out to stderr, which may help show what's going on.

PenguinDOOM commented 5 years ago

Crash when using Third-Order HRTF rendering. logs.zip

kcat commented 5 years ago

Please tell me MSVC isn't doing something silly like asserting on somearray.begin() + somearray.size().

PenguinDOOM commented 5 years ago

Assert? You mean NDEBUG?

kcat commented 5 years ago

I mean an assert or similar, which is catching when the begin iterator is incremented to the end iterator position.

PenguinDOOM commented 5 years ago

I don't know anything more, but any HRTF file will crash if the HRTF Render Method is Full (not Default).

kcat commented 5 years ago

I thought it would crash when using third-order rendering? It crashing with Full (not Default) makes even less sense since it's using the same values as default. Can you provide a trace log and backtrace when set to Full? Does it also crash with first- or second-order?

kcat commented 5 years ago

Something really weird is going on. I'm looking through the logs again and am noticing it's saying surround71 is unsupported/unrecognized channels, and float32 is an unsupported sample-type, neither of which is true. It's also saying it found hrtf-mode = "full", but then says Third-Order HRTF rendering enabled before the crash. Those channels and sample-type values should be recognized, and it shouldn't be using 3rd order when the hrtf-mode is set to full. It looks like some bigger issue of memory corruption or something somewhere. Are there some tools you can use to watch for bad memory accesses in a program?

PenguinDOOM commented 5 years ago

ambi1, ambi2, and ambi3 don't seem to work

1st order ambisonic
AL lib: (II) Initializing library v1.19.1-95ece0b6 master
AL lib: (II) Supported backends: wasapi, dsound, winmm, null, wave
AL lib: (II) Loading config C:\Users\Penguin\AppData\Roaming\alsoft.ini...
AL lib: (II)  found 'hrtf-paths' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,'
AL lib: (II)  found 'period_size' = '960'
AL lib: (II)  found 'periods' = '3'
AL lib: (II)  found 'output-limiter' = 'true'
AL lib: (II)  found 'hrtf' = 'true'
AL lib: (II)  found 'default-hrtf' = 'KU100'
AL lib: (II)  found 'resampler' = 'point'
AL lib: (II)  found 'stereo-mode' = 'headphones'
AL lib: (II)  found 'frequency' = '48000'
AL lib: (II)  found 'dither' = 'false'
AL lib: (II)  found 'hrtf-mode' = 'ambi1'
AL lib: (II)  found 'decoder/quad' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/square.ambdec'
AL lib: (II)  found 'decoder/surround51' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/itu5.1.ambdec'
AL lib: (II)  found 'decoder/surround61' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/hexagon.ambdec'
AL lib: (II)  found 'decoder/surround71' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/3D7.1.ambdec'
AL lib: (II)  found 'decoder/distance-comp' = 'false'
AL lib: (II)  found 'decoder/nfc' = 'false'
AL lib: (II)  found 'decoder/hq-mode' = 'false'
AL lib: (II) Got binary: C:\Users\Penguin\Zandronum, zandronum.exe
AL lib: (II) Loading config C:\Users\Penguin\Zandronum\alsoft.ini...
AL lib: (II) Key disable-cpu-exts not found
AL lib: (II) Detected max CPUID function: 0xb (ext. 0x80000008)
AL lib: (II) Vendor ID: ""
AL lib: (II) Name: "Intel(R) Core(TM) i5 CPU       M 480  @ 2.67GHz"
AL lib: (II) Extensions: +SSE +SSE2 +SSE3 +SSE4.1
AL lib: (II) Key rt-prio not found
AL lib: (II) Found resampler = "point"
AL lib: (II) Key trap-al-error not found
AL lib: (II) Key trap-alc-error not found
AL lib: (II) Key reverb/boost not found
AL lib: (II) Key drivers not found
AL lib: (II) Starting message thread
AL lib: (II) Message thread initialization complete
AL lib: (II) Starting message loop
AL lib: (II) Initialized backend "wasapi"
AL lib: (II) Added "wasapi" for playback
AL lib: (II) Added "wasapi" for capture
AL lib: (II) Key excludefx not found
AL lib: (II) Key default-reverb not found
AL lib: (II) Got message "Open Device" (0x0000, this=051283C0)
AL lib: (II) Key channels not found
AL lib: (II) Key sample-type not found
AL lib: (II) Found frequency = "48000"
AL lib: (II) Found period_size = "960"
AL lib: (II) Found periods = "3"
AL lib: (II) Key sources not found
AL lib: (II) Key slots not found
AL lib: (II) Key sends not found
AL lib: (II) Key ambi-format not found
AL lib: (II) Created device 050D6390, "OpenAL Soft on AL lib: (II) Found hrtf = "true"
AL lib: (II) Found hrtf-paths = "C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,"
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\*.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr"
AL lib: (II) Adding file entry "KEMAR"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr"
AL lib: (II) Adding file entry "KU100-msvc"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr"
AL lib: (II) Adding file entry "KU100"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr"
AL lib: (II) Adding file entry "KU100_Alt"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr"
AL lib: (II) Adding file entry "KU100_WAVE_Sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr"
AL lib: (II) Adding file entry "KU100_WAVE_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr"
AL lib: (II) Adding file entry "ciair_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr"
AL lib: (II) Adding file entry "ciair_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr"
AL lib: (II) Adding file entry "ciair_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr"
AL lib: (II) Adding file entry "ciair_48000_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_48000_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr"
AL lib: (II) Adding file entry "scut_kemar_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr"
AL lib: (II) Adding file entry "scut_kemar_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr"
AL lib: (II) Adding file entry "scut_kemar_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr"
AL lib: (II) Adding file entry "scut_kemar_48000_sphere"
AL lib: (II) Searching C:\Users\Penguin\Zandronum\*.mhr
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\openal\hrtf\*.mhr
AL lib: (II) Searching C:\ProgramData\openal\hrtf\*.mhr
AL lib: (II) Got new file "Built-In 44100hz"
AL lib: (II) Adding built-in entry "Built-In 44100hz"
AL lib: (II) Got new file "Built-In 48000hz"
AL lib: (II) Adding built-in entry "Built-In 48000hz"
AL lib: (II) Found default-hrtf = "KU100"
AL lib: (II) Loading C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr...
AL lib: (II) Detected data set format v2
AL lib: (II) Loaded HRTF support for sample rate: 48000hz
AL lib: (II) Pre-reset: *Stereo, Float, *48000hz, 960 / 2880 buffer
AL lib: (II) Got message "Reset Device" (0x0001, this=051283C0)
AL lib: (II) Requesting playback format:
    FormatTag      = 0xfffe
    Channels       = 2
    SamplesPerSec  = 48000
    AvgBytesPerSec = 384000
    BlockAlign     = 8
    BitsPerSample  = 32
    Size           = 22
    Samples        = 32
    ChannelMask    = 0x3
    SubFormat      = {00000003-0000-0010-8000-00aa00389b71}
AL lib: (II) Post-reset: Stereo, Float, 48000hz, 960 / 2880 buffer
AL lib: (II) Found stereo-mode = "headphones"
AL lib: (II) HrtfEntry 0690CE00 increasing refcount to 2
AL lib: (II) HrtfEntry 0690CE00 decreasing refcount to 1
AL lib: (II) Found hrtf-mode = "ambi1"
AL lib: (EE) Unexpected hrtf-mode: ambi1
AL lib: (II) Full HRTF rendering enabled, using "KU100"
AL lib: (II) Channel config, Main: 4, Real: 2
AL lib: (II) Allocating 6 channels, 24576 bytes
AL lib: (II) Skipped delay: 12, max delay: 38, new FIR length: 102
AL lib: (II) Found decoder/nfc = "false"
AL lib: (II) Max sources: 256 (255 + 1), effect slots: 64, sends: 2
AL lib: (II) Front stablizer disabled
AL lib: (II) Found dither = "false"
AL lib: (II) Dithering disabled
AL lib: (II) Found output-limiter = "true"
AL lib: (II) Output limiter enabled, 0.0000dB limit
AL lib: (II) Fixed device latency: 1000000ns
AL lib: (II) Got message "Start Device" (0x0002, this=051283C0)
AL lib: (II) Key volume-adjust not found
AL lib: (II) Created context 050F1730
AL lib: (II) Got message "Stop Device" (0x0003, this=051283C0)
AL lib: (II) Freeing context 050F1730
AL lib: (II) Freed 0 context property objects
AL lib: (II) Freed 0 AuxiliaryEffectSlot property objects
AL lib: (II) Freed 0 voice property objects
AL lib: (II) Freed 1 listener property object
AL lib: (II) Freeing device 050D6390
AL lib: (II) Got message "Close Device" (0x0004, this=051283C0)
AL lib: (II) HrtfEntry 0690CE00 decreasing refcount to 0
AL lib: (II) Unloading unused HRTF C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II) Got message "Open Device" (0x0000, this=05127920)
AL lib: (II) Key channels not found
AL lib: (II) Key sample-type not found
AL lib: (II) Found frequency = "48000"
AL lib: (II) Found period_size = "960"
AL lib: (II) Found periods = "3"
AL lib: (II) Key sources not found
AL lib: (II) Key slots not found
AL lib: (II) Key sends not found
AL lib: (II) Key ambi-format not found
AL lib: (II) Created device 050D6390, "OpenAL Soft on AL lib: (II) Found hrtf = "true"
AL lib: (II) Found hrtf-paths = "C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,"
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\*.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr
AL lib: (II) Adding file entry "KEMAR"
AL lib: (II) Adding file entry "KU100-msvc"
AL lib: (II) Adding file entry "KU100"
AL lib: (II) Adding file entry "KU100_Alt"
AL lib: (II) Adding file entry "KU100_WAVE_Sphere"
AL lib: (II) Adding file entry "KU100_WAVE_dataset"
AL lib: (II) Adding file entry "ciair_44100_dataset"
AL lib: (II) Adding file entry "ciair_44100_sphere"
AL lib: (II) Adding file entry "ciair_48000_dataset"
AL lib: (II) Adding file entry "ciair_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_sphere"
AL lib: (II) Adding file entry "scut_kemar_44100_dataset"
AL lib: (II) Adding file entry "scut_kemar_44100_sphere"
AL lib: (II) Adding file entry "scut_kemar_48000_dataset"
AL lib: (II) Adding file entry "scut_kemar_48000_sphere"
AL lib: (II) Searching C:\Users\Penguin\Zandronum\*.mhr
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\openal\hrtf\*.mhr
AL lib: (II) Searching C:\ProgramData\openal\hrtf\*.mhr
AL lib: (II) Got new file "Built-In 44100hz"
AL lib: (II) Adding built-in entry "Built-In 44100hz"
AL lib: (II) Got new file "Built-In 48000hz"
AL lib: (II) Adding built-in entry "Built-In 48000hz"
AL lib: (II) Found default-hrtf = "KU100"
AL lib: (II) Loading C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr...
AL lib: (II) Detected data set format v2
AL lib: (II) Loaded HRTF support for sample rate: 48000hz
AL lib: (II) Pre-reset: *Stereo, Float, *48000hz, 960 / 2880 buffer
AL lib: (II) Got message "Reset Device" (0x0001, this=05127920)
AL lib: (II) Requesting playback format:
    FormatTag      = 0xfffe
    Channels       = 2
    SamplesPerSec  = 48000
    AvgBytesPerSec = 384000
    BlockAlign     = 8
    BitsPerSample  = 32
    Size           = 22
    Samples        = 32
    ChannelMask    = 0x3
    SubFormat      = {00000003-0000-0010-8000-00aa00389b71}
AL lib: (II) Post-reset: Stereo, Float, 48000hz, 960 / 2880 buffer
AL lib: (II) Found stereo-mode = "headphones"
AL lib: (II) HrtfEntry 06989FF0 increasing refcount to 2
AL lib: (II) HrtfEntry 06989FF0 decreasing refcount to 1
AL lib: (II) Found hrtf-mode = "ambi1"
AL lib: (EE) Unexpected hrtf-mode: ambi1
AL lib: (II) Full HRTF rendering enabled, using "KU100"
AL lib: (II) Channel config, Main: 4, Real: 2
AL lib: (II) Allocating 6 channels, 24576 bytes
AL lib: (II) Skipped delay: 12, max delay: 38, new FIR length: 102
AL lib: (II) Found decoder/nfc = "false"
AL lib: (II) Max sources: 256 (255 + 1), effect slots: 64, sends: 2
AL lib: (II) Front stablizer disabled
AL lib: (II) Found dither = "false"
AL lib: (II) Dithering disabled
AL lib: (II) Found output-limiter = "true"
AL lib: (II) Output limiter enabled, 0.0000dB limit
AL lib: (II) Fixed device latency: 1000000ns
AL lib: (II) Got message "Start Device" (0x0002, this=05127920)
AL lib: (II) Key volume-adjust not found
AL lib: (II) Created context 050DDD30
AL lib: (II) Got message "Stop Device" (0x0003, this=05127920)
AL lib: (II) Freeing context 050DDD30
AL lib: (II) Freed 0 context property objects
AL lib: (II) Freed 0 AuxiliaryEffectSlot property objects
AL lib: (II) Freed 0 voice property objects
AL lib: (II) Freed 1 listener property object
AL lib: (II) Freeing device 050D6390
AL lib: (II) Got message "Close Device" (0x0004, this=05127920)
AL lib: (II) HrtfEntry 06989FF0 decreasing refcount to 0
AL lib: (II) Unloading unused HRTF C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II) Got message "Open Device" (0x0000, this=05127EF8)
AL lib: (II) Key channels not found
AL lib: (II) Key sample-type not found
AL lib: (II) Found frequency = "48000"
AL lib: (II) Found period_size = "960"
AL lib: (II) Found periods = "3"
AL lib: (II) Key sources not found
AL lib: (II) Key slots not found
AL lib: (II) Key sends not found
AL lib: (II) Key ambi-format not found
AL lib: (II) Created device 050D6390, "OpenAL Soft on AL lib: (II) Found hrtf = "true"
AL lib: (II) Found hrtf-paths = "C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,"
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\*.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr
AL lib: (II) Adding file entry "KEMAR"
AL lib: (II) Adding file entry "KU100-msvc"
AL lib: (II) Adding file entry "KU100"
AL lib: (II) Adding file entry "KU100_Alt"
AL lib: (II) Adding file entry "KU100_WAVE_Sphere"
AL lib: (II) Adding file entry "KU100_WAVE_dataset"
AL lib: (II) Adding file entry "ciair_44100_dataset"
AL lib: (II) Adding file entry "ciair_44100_sphere"
AL lib: (II) Adding file entry "ciair_48000_dataset"
AL lib: (II) Adding file entry "ciair_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_sphere"
AL lib: (II) Adding file entry "scut_kemar_44100_dataset"
AL lib: (II) Adding file entry "scut_kemar_44100_sphere"
AL lib: (II) Adding file entry "scut_kemar_48000_dataset"
AL lib: (II) Adding file entry "scut_kemar_48000_sphere"
AL lib: (II) Searching C:\Users\Penguin\Zandronum\*.mhr
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\openal\hrtf\*.mhr
AL lib: (II) Searching C:\ProgramData\openal\hrtf\*.mhr
AL lib: (II) Got new file "Built-In 44100hz"
AL lib: (II) Adding built-in entry "Built-In 44100hz"
AL lib: (II) Got new file "Built-In 48000hz"
AL lib: (II) Adding built-in entry "Built-In 48000hz"
AL lib: (II) Found default-hrtf = "KU100"
AL lib: (II) Loading C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr...
AL lib: (II) Detected data set format v2
AL lib: (II) Loaded HRTF support for sample rate: 48000hz
AL lib: (II) Pre-reset: *Stereo, Float, *48000hz, 960 / 2880 buffer
AL lib: (II) Got message "Reset Device" (0x0001, this=05127EF8)
AL lib: (II) Requesting playback format:
    FormatTag      = 0xfffe
    Channels       = 2
    SamplesPerSec  = 48000
    AvgBytesPerSec = 384000
    BlockAlign     = 8
    BitsPerSample  = 32
    Size           = 22
    Samples        = 32
    ChannelMask    = 0x3
    SubFormat      = {00000003-0000-0010-8000-00aa00389b71}
AL lib: (II) Post-reset: Stereo, Float, 48000hz, 960 / 2880 buffer
AL lib: (II) Found stereo-mode = "headphones"
AL lib: (II) HrtfEntry 06989FF0 increasing refcount to 2
AL lib: (II) HrtfEntry 06989FF0 decreasing refcount to 1
AL lib: (II) Found hrtf-mode = "ambi1"
AL lib: (EE) Unexpected hrtf-mode: ambi1
AL lib: (II) Full HRTF rendering enabled, using "KU100"
AL lib: (II) Channel config, Main: 4, Real: 2
AL lib: (II) Allocating 6 channels, 24576 bytes
AL lib: (II) Skipped delay: 12, max delay: 38, new FIR length: 102
AL lib: (II) Found decoder/nfc = "false"
AL lib: (II) Max sources: 256 (255 + 1), effect slots: 64, sends: 2
AL lib: (II) Front stablizer disabled
AL lib: (II) Found dither = "false"
AL lib: (II) Dithering disabled
AL lib: (II) Found output-limiter = "true"
AL lib: (II) Output limiter enabled, 0.0000dB limit
AL lib: (II) Fixed device latency: 1000000ns
AL lib: (II) Got message "Start Device" (0x0002, this=05127EF8)
AL lib: (II) Key volume-adjust not found
AL lib: (II) Created context 050DDD30
AL lib: (II) Got message "Stop Device" (0x0003, this=05127EF8)
AL lib: (II) Freeing context 050DDD30
AL lib: (II) Freed 0 context property objects
AL lib: (II) Freed 0 AuxiliaryEffectSlot property objects
AL lib: (II) Freed 0 voice property objects
AL lib: (II) Freed 1 listener property object
AL lib: (II) Freeing device 050D6390
AL lib: (II) Got message "Close Device" (0x0004, this=05127EF8)
AL lib: (II) HrtfEntry 06989FF0 decreasing refcount to 0
AL lib: (II) Unloading unused HRTF C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II) Got message "Open Device" (0x0000, this=05127C50)
AL lib: (II) Key channels not found
AL lib: (II) Key sample-type not found
AL lib: (II) Found frequency = "48000"
AL lib: (II) Found period_size = "960"
AL lib: (II) Found periods = "3"
AL lib: (II) Key sources not found
AL lib: (II) Key slots not found
AL lib: (II) Key sends not found
AL lib: (II) Key ambi-format not found
AL lib: (II) Created device 050D6390, "OpenAL Soft on AL lib: (II) Found hrtf = "true"
AL lib: (II) Found hrtf-paths = "C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,"
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\*.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr
AL lib: (II) Adding file entry "KEMAR"
AL lib: (II) Adding file entry "KU100-msvc"
AL lib: (II) Adding file entry "KU100"
AL lib: (II) Adding file entry "KU100_Alt"
AL lib: (II) Adding file entry "KU100_WAVE_Sphere"
AL lib: (II) Adding file entry "KU100_WAVE_dataset"
AL lib: (II) Adding file entry "ciair_44100_dataset"
AL lib: (II) Adding file entry "ciair_44100_sphere"
AL lib: (II) Adding file entry "ciair_48000_dataset"
AL lib: (II) Adding file entry "ciair_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_sphere"
AL lib: (II) Adding file entry "scut_kemar_44100_dataset"
AL lib: (II) Adding file entry "scut_kemar_44100_sphere"
AL lib: (II) Adding file entry "scut_kemar_48000_dataset"
AL lib: (II) Adding file entry "scut_kemar_48000_sphere"
AL lib: (II) Searching C:\Users\Penguin\Zandronum\*.mhr
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\openal\hrtf\*.mhr
AL lib: (II) Searching C:\ProgramData\openal\hrtf\*.mhr
AL lib: (II) Got new file "Built-In 44100hz"
AL lib: (II) Adding built-in entry "Built-In 44100hz"
AL lib: (II) Got new file "Built-In 48000hz"
AL lib: (II) Adding built-in entry "Built-In 48000hz"
AL lib: (II) Found default-hrtf = "KU100"
AL lib: (II) Loading C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr...
AL lib: (II) Detected data set format v2
AL lib: (II) Loaded HRTF support for sample rate: 48000hz
AL lib: (II) Pre-reset: *Stereo, Float, *48000hz, 960 / 2880 buffer
AL lib: (II) Got message "Reset Device" (0x0001, this=05127C50)
AL lib: (II) Requesting playback format:
    FormatTag      = 0xfffe
    Channels       = 2
    SamplesPerSec  = 48000
    AvgBytesPerSec = 384000
    BlockAlign     = 8
    BitsPerSample  = 32
    Size           = 22
    Samples        = 32
    ChannelMask    = 0x3
    SubFormat      = {00000003-0000-0010-8000-00aa00389b71}
AL lib: (II) Post-reset: Stereo, Float, 48000hz, 960 / 2880 buffer
AL lib: (II) Found stereo-mode = "headphones"
AL lib: (II) HrtfEntry 06989FF0 increasing refcount to 2
AL lib: (II) HrtfEntry 06989FF0 decreasing refcount to 1
AL lib: (II) Found hrtf-mode = "ambi1"
AL lib: (EE) Unexpected hrtf-mode: ambi1
AL lib: (II) Full HRTF rendering enabled, using "KU100"
AL lib: (II) Channel config, Main: 4, Real: 2
AL lib: (II) Allocating 6 channels, 24576 bytes
AL lib: (II) Skipped delay: 12, max delay: 38, new FIR length: 102
AL lib: (II) Found decoder/nfc = "false"
AL lib: (II) Max sources: 256 (255 + 1), effect slots: 64, sends: 2
AL lib: (II) Front stablizer disabled
AL lib: (II) Found dither = "false"
AL lib: (II) Dithering disabled
AL lib: (II) Found output-limiter = "true"
AL lib: (II) Output limiter enabled, 0.0000dB limit
AL lib: (II) Fixed device latency: 1000000ns
AL lib: (II) Got message "Start Device" (0x0002, this=05127C50)
AL lib: (II) Key volume-adjust not found
AL lib: (II) Created context 050DDD30
Playing C:\Users\Penguin\AppData\Local\Temp\zmid2
MIDI file: C:\Users\Penguin\AppData\Local\Temp\zmid2
Format: 0  Tracks: 1  Divisions: 140
AL lib: (II) Got message "Stop Device" (0x0003, this=05127C50)
AL lib: (II) Freeing context 050DDD30
AL lib: (II) Freed 2 context property objects
AL lib: (II) Freed 0 AuxiliaryEffectSlot property objects
AL lib: (II) Freed 1 voice property object
AL lib: (II) Freed 2 listener property objects
AL lib: (II) Freeing device 050D6390
AL lib: (II) Got message "Close Device" (0x0004, this=05127C50)
AL lib: (II) HrtfEntry 06989FF0 decreasing refcount to 0
AL lib: (II) Unloading unused HRTF C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
2nd order ambisonic
AL lib: (II) Initializing library v1.19.1-95ece0b6 master
AL lib: (II) Supported backends: wasapi, dsound, winmm, null, wave
AL lib: (II) Loading config C:\Users\Penguin\AppData\Roaming\alsoft.ini...
AL lib: (II)  found 'hrtf-paths' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,'
AL lib: (II)  found 'period_size' = '960'
AL lib: (II)  found 'periods' = '3'
AL lib: (II)  found 'output-limiter' = 'true'
AL lib: (II)  found 'hrtf' = 'true'
AL lib: (II)  found 'default-hrtf' = 'KU100'
AL lib: (II)  found 'resampler' = 'point'
AL lib: (II)  found 'stereo-mode' = 'headphones'
AL lib: (II)  found 'frequency' = '48000'
AL lib: (II)  found 'dither' = 'false'
AL lib: (II)  found 'hrtf-mode' = 'ambi2'
AL lib: (II)  found 'decoder/quad' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/square.ambdec'
AL lib: (II)  found 'decoder/surround51' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/itu5.1.ambdec'
AL lib: (II)  found 'decoder/surround61' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/hexagon.ambdec'
AL lib: (II)  found 'decoder/surround71' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/3D7.1.ambdec'
AL lib: (II)  found 'decoder/distance-comp' = 'false'
AL lib: (II)  found 'decoder/nfc' = 'false'
AL lib: (II)  found 'decoder/hq-mode' = 'false'
AL lib: (II) Got binary: C:\Users\Penguin\Zandronum, zandronum.exe
AL lib: (II) Loading config C:\Users\Penguin\Zandronum\alsoft.ini...
AL lib: (II) Key disable-cpu-exts not found
AL lib: (II) Detected max CPUID function: 0xb (ext. 0x80000008)
AL lib: (II) Vendor ID: ""
AL lib: (II) Name: "Intel(R) Core(TM) i5 CPU       M 480  @ 2.67GHz"
AL lib: (II) Extensions: +SSE +SSE2 +SSE3 +SSE4.1
AL lib: (II) Key rt-prio not found
AL lib: (II) Found resampler = "point"
AL lib: (II) Key trap-al-error not found
AL lib: (II) Key trap-alc-error not found
AL lib: (II) Key reverb/boost not found
AL lib: (II) Key drivers not found
AL lib: (II) Starting message thread
AL lib: (II) Message thread initialization complete
AL lib: (II) Starting message loop
AL lib: (II) Initialized backend "wasapi"
AL lib: (II) Added "wasapi" for playback
AL lib: (II) Added "wasapi" for capture
AL lib: (II) Key excludefx not found
AL lib: (II) Key default-reverb not found
AL lib: (II) Got message "Open Device" (0x0000, this=0511EA70)
AL lib: (II) Key channels not found
AL lib: (II) Key sample-type not found
AL lib: (II) Found frequency = "48000"
AL lib: (II) Found period_size = "960"
AL lib: (II) Found periods = "3"
AL lib: (II) Key sources not found
AL lib: (II) Key slots not found
AL lib: (II) Key sends not found
AL lib: (II) Key ambi-format not found
AL lib: (II) Created device 0512DF40, "OpenAL Soft on AL lib: (II) Found hrtf = "true"
AL lib: (II) Found hrtf-paths = "C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,"
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\*.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr"
AL lib: (II) Adding file entry "KEMAR"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr"
AL lib: (II) Adding file entry "KU100-msvc"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr"
AL lib: (II) Adding file entry "KU100"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr"
AL lib: (II) Adding file entry "KU100_Alt"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr"
AL lib: (II) Adding file entry "KU100_WAVE_Sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr"
AL lib: (II) Adding file entry "KU100_WAVE_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr"
AL lib: (II) Adding file entry "ciair_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr"
AL lib: (II) Adding file entry "ciair_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr"
AL lib: (II) Adding file entry "ciair_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr"
AL lib: (II) Adding file entry "ciair_48000_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_48000_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr"
AL lib: (II) Adding file entry "scut_kemar_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr"
AL lib: (II) Adding file entry "scut_kemar_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr"
AL lib: (II) Adding file entry "scut_kemar_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr"
AL lib: (II) Adding file entry "scut_kemar_48000_sphere"
AL lib: (II) Searching C:\Users\Penguin\Zandronum\*.mhr
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\openal\hrtf\*.mhr
AL lib: (II) Searching C:\ProgramData\openal\hrtf\*.mhr
AL lib: (II) Got new file "Built-In 44100hz"
AL lib: (II) Adding built-in entry "Built-In 44100hz"
AL lib: (II) Got new file "Built-In 48000hz"
AL lib: (II) Adding built-in entry "Built-In 48000hz"
AL lib: (II) Found default-hrtf = "KU100"
AL lib: (II) Loading C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr...
AL lib: (II) Detected data set format v2
AL lib: (II) Loaded HRTF support for sample rate: 48000hz
AL lib: (II) Pre-reset: *Stereo, Float, *48000hz, 960 / 2880 buffer
AL lib: (II) Got message "Reset Device" (0x0001, this=0511EA70)
AL lib: (II) Requesting playback format:
    FormatTag      = 0xfffe
    Channels       = 2
    SamplesPerSec  = 48000
    AvgBytesPerSec = 384000
    BlockAlign     = 8
    BitsPerSample  = 32
    Size           = 22
    Samples        = 32
    ChannelMask    = 0x3
    SubFormat      = {00000003-0000-0010-8000-00aa00389b71}
AL lib: (II) Post-reset: Stereo, Float, 48000hz, 960 / 2880 buffer
AL lib: (II) Found stereo-mode = "headphones"
AL lib: (II) HrtfEntry 068FCE00 increasing refcount to 2
AL lib: (II) HrtfEntry 068FCE00 decreasing refcount to 1
AL lib: (II) Found hrtf-mode = "ambi2"
AL lib: (EE) Unexpected hrtf-mode: ambi2
AL lib: (II) Full HRTF rendering enabled, using "KU100"
AL lib: (II) Channel config, Main: 4, Real: 2
AL lib: (II) Allocating 6 channels, 24576 bytes
AL lib: (II) Skipped delay: 12, max delay: 38, new FIR length: 102
AL lib: (II) Found decoder/nfc = "false"
AL lib: (II) Max sources: 256 (255 + 1), effect slots: 64, sends: 2
AL lib: (II) Front stablizer disabled
AL lib: (II) Found dither = "false"
AL lib: (II) Dithering disabled
AL lib: (II) Found output-limiter = "true"
AL lib: (II) Output limiter enabled, 0.0000dB limit
AL lib: (II) Fixed device latency: 1000000ns
AL lib: (II) Got message "Start Device" (0x0002, this=0511EA70)
AL lib: (II) Key volume-adjust not found
AL lib: (II) Created context 050EB3E0
AL lib: (II) Got message "Stop Device" (0x0003, this=0511EA70)
AL lib: (II) Freeing context 050EB3E0
AL lib: (II) Freed 0 context property objects
AL lib: (II) Freed 0 AuxiliaryEffectSlot property objects
AL lib: (II) Freed 0 voice property objects
AL lib: (II) Freed 1 listener property object
AL lib: (II) Freeing device 0512DF40
AL lib: (II) Got message "Close Device" (0x0004, this=0511EA70)
AL lib: (II) HrtfEntry 068FCE00 decreasing refcount to 0
AL lib: (II) Unloading unused HRTF C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II) Got message "Open Device" (0x0000, this=0511F510)
AL lib: (II) Key channels not found
AL lib: (II) Key sample-type not found
AL lib: (II) Found frequency = "48000"
AL lib: (II) Found period_size = "960"
AL lib: (II) Found periods = "3"
AL lib: (II) Key sources not found
AL lib: (II) Key slots not found
AL lib: (II) Key sends not found
AL lib: (II) Key ambi-format not found
AL lib: (II) Created device 0512DF40, "OpenAL Soft on AL lib: (II) Found hrtf = "true"
AL lib: (II) Found hrtf-paths = "C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,"
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\*.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr
AL lib: (II) Adding file entry "KEMAR"
AL lib: (II) Adding file entry "KU100-msvc"
AL lib: (II) Adding file entry "KU100"
AL lib: (II) Adding file entry "KU100_Alt"
AL lib: (II) Adding file entry "KU100_WAVE_Sphere"
AL lib: (II) Adding file entry "KU100_WAVE_dataset"
AL lib: (II) Adding file entry "ciair_44100_dataset"
AL lib: (II) Adding file entry "ciair_44100_sphere"
AL lib: (II) Adding file entry "ciair_48000_dataset"
AL lib: (II) Adding file entry "ciair_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_sphere"
AL lib: (II) Adding file entry "scut_kemar_44100_dataset"
AL lib: (II) Adding file entry "scut_kemar_44100_sphere"
AL lib: (II) Adding file entry "scut_kemar_48000_dataset"
AL lib: (II) Adding file entry "scut_kemar_48000_sphere"
AL lib: (II) Searching C:\Users\Penguin\Zandronum\*.mhr
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\openal\hrtf\*.mhr
AL lib: (II) Searching C:\ProgramData\openal\hrtf\*.mhr
AL lib: (II) Got new file "Built-In 44100hz"
AL lib: (II) Adding built-in entry "Built-In 44100hz"
AL lib: (II) Got new file "Built-In 48000hz"
AL lib: (II) Adding built-in entry "Built-In 48000hz"
AL lib: (II) Found default-hrtf = "KU100"
AL lib: (II) Loading C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr...
AL lib: (II) Detected data set format v2
AL lib: (II) Loaded HRTF support for sample rate: 48000hz
AL lib: (II) Pre-reset: *Stereo, Float, *48000hz, 960 / 2880 buffer
AL lib: (II) Got message "Reset Device" (0x0001, this=0511F510)
AL lib: (II) Requesting playback format:
    FormatTag      = 0xfffe
    Channels       = 2
    SamplesPerSec  = 48000
    AvgBytesPerSec = 384000
    BlockAlign     = 8
    BitsPerSample  = 32
    Size           = 22
    Samples        = 32
    ChannelMask    = 0x3
    SubFormat      = {00000003-0000-0010-8000-00aa00389b71}
AL lib: (II) Post-reset: Stereo, Float, 48000hz, 960 / 2880 buffer
AL lib: (II) Found stereo-mode = "headphones"
AL lib: (II) HrtfEntry 068FCE00 increasing refcount to 2
AL lib: (II) HrtfEntry 068FCE00 decreasing refcount to 1
AL lib: (II) Found hrtf-mode = "ambi2"
AL lib: (EE) Unexpected hrtf-mode: ambi2
AL lib: (II) Full HRTF rendering enabled, using "KU100"
AL lib: (II) Channel config, Main: 4, Real: 2
AL lib: (II) Allocating 6 channels, 24576 bytes
AL lib: (II) Skipped delay: 12, max delay: 38, new FIR length: 102
AL lib: (II) Found decoder/nfc = "false"
AL lib: (II) Max sources: 256 (255 + 1), effect slots: 64, sends: 2
AL lib: (II) Front stablizer disabled
AL lib: (II) Found dither = "false"
AL lib: (II) Dithering disabled
AL lib: (II) Found output-limiter = "true"
AL lib: (II) Output limiter enabled, 0.0000dB limit
AL lib: (II) Fixed device latency: 1000000ns
AL lib: (II) Got message "Start Device" (0x0002, this=0511F510)
AL lib: (II) Key volume-adjust not found
AL lib: (II) Created context 050EC2B0
AL lib: (II) Got message "Stop Device" (0x0003, this=0511F510)
AL lib: (II) Freeing context 050EC2B0
AL lib: (II) Freed 0 context property objects
AL lib: (II) Freed 0 AuxiliaryEffectSlot property objects
AL lib: (II) Freed 0 voice property objects
AL lib: (II) Freed 1 listener property object
AL lib: (II) Freeing device 0512DF40
AL lib: (II) Got message "Close Device" (0x0004, this=0511F510)
AL lib: (II) HrtfEntry 068FCE00 decreasing refcount to 0
AL lib: (II) Unloading unused HRTF C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II) Got message "Open Device" (0x0000, this=0511EEB0)
AL lib: (II) Key channels not found
AL lib: (II) Key sample-type not found
AL lib: (II) Found frequency = "48000"
AL lib: (II) Found period_size = "960"
AL lib: (II) Found periods = "3"
AL lib: (II) Key sources not found
AL lib: (II) Key slots not found
AL lib: (II) Key sends not found
AL lib: (II) Key ambi-format not found
AL lib: (II) Created device 0512DF40, "OpenAL Soft on AL lib: (II) Found hrtf = "true"
AL lib: (II) Found hrtf-paths = "C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,"
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\*.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr
AL lib: (II) Adding file entry "KEMAR"
AL lib: (II) Adding file entry "KU100-msvc"
AL lib: (II) Adding file entry "KU100"
AL lib: (II) Adding file entry "KU100_Alt"
AL lib: (II) Adding file entry "KU100_WAVE_Sphere"
AL lib: (II) Adding file entry "KU100_WAVE_dataset"
AL lib: (II) Adding file entry "ciair_44100_dataset"
AL lib: (II) Adding file entry "ciair_44100_sphere"
AL lib: (II) Adding file entry "ciair_48000_dataset"
AL lib: (II) Adding file entry "ciair_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_sphere"
AL lib: (II) Adding file entry "scut_kemar_44100_dataset"
AL lib: (II) Adding file entry "scut_kemar_44100_sphere"
AL lib: (II) Adding file entry "scut_kemar_48000_dataset"
AL lib: (II) Adding file entry "scut_kemar_48000_sphere"
AL lib: (II) Searching C:\Users\Penguin\Zandronum\*.mhr
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\openal\hrtf\*.mhr
AL lib: (II) Searching C:\ProgramData\openal\hrtf\*.mhr
AL lib: (II) Got new file "Built-In 44100hz"
AL lib: (II) Adding built-in entry "Built-In 44100hz"
AL lib: (II) Got new file "Built-In 48000hz"
AL lib: (II) Adding built-in entry "Built-In 48000hz"
AL lib: (II) Found default-hrtf = "KU100"
AL lib: (II) Loading C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr...
AL lib: (II) Detected data set format v2
AL lib: (II) Loaded HRTF support for sample rate: 48000hz
AL lib: (II) Pre-reset: *Stereo, Float, *48000hz, 960 / 2880 buffer
AL lib: (II) Got message "Reset Device" (0x0001, this=0511EEB0)
AL lib: (II) Requesting playback format:
    FormatTag      = 0xfffe
    Channels       = 2
    SamplesPerSec  = 48000
    AvgBytesPerSec = 384000
    BlockAlign     = 8
    BitsPerSample  = 32
    Size           = 22
    Samples        = 32
    ChannelMask    = 0x3
    SubFormat      = {00000003-0000-0010-8000-00aa00389b71}
AL lib: (II) Post-reset: Stereo, Float, 48000hz, 960 / 2880 buffer
AL lib: (II) Found stereo-mode = "headphones"
AL lib: (II) HrtfEntry 068FCE00 increasing refcount to 2
AL lib: (II) HrtfEntry 068FCE00 decreasing refcount to 1
AL lib: (II) Found hrtf-mode = "ambi2"
AL lib: (EE) Unexpected hrtf-mode: ambi2
AL lib: (II) Full HRTF rendering enabled, using "KU100"
AL lib: (II) Channel config, Main: 4, Real: 2
AL lib: (II) Allocating 6 channels, 24576 bytes
AL lib: (II) Skipped delay: 12, max delay: 38, new FIR length: 102
AL lib: (II) Found decoder/nfc = "false"
AL lib: (II) Max sources: 256 (255 + 1), effect slots: 64, sends: 2
AL lib: (II) Front stablizer disabled
AL lib: (II) Found dither = "false"
AL lib: (II) Dithering disabled
AL lib: (II) Found output-limiter = "true"
AL lib: (II) Output limiter enabled, 0.0000dB limit
AL lib: (II) Fixed device latency: 1000000ns
AL lib: (II) Got message "Start Device" (0x0002, this=0511EEB0)
AL lib: (II) Key volume-adjust not found
AL lib: (II) Created context 050EC2B0
AL lib: (II) Got message "Stop Device" (0x0003, this=0511EEB0)
AL lib: (II) Freeing context 050EC2B0
AL lib: (II) Freed 0 context property objects
AL lib: (II) Freed 0 AuxiliaryEffectSlot property objects
AL lib: (II) Freed 0 voice property objects
AL lib: (II) Freed 1 listener property object
AL lib: (II) Freeing device 0512DF40
AL lib: (II) Got message "Close Device" (0x0004, this=0511EEB0)
AL lib: (II) HrtfEntry 068FCE00 decreasing refcount to 0
AL lib: (II) Unloading unused HRTF C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II) Got message "Open Device" (0x0000, this=0511EEB0)
AL lib: (II) Key channels not found
AL lib: (II) Key sample-type not found
AL lib: (II) Found frequency = "48000"
AL lib: (II) Found period_size = "960"
AL lib: (II) Found periods = "3"
AL lib: (II) Key sources not found
AL lib: (II) Key slots not found
AL lib: (II) Key sends not found
AL lib: (II) Key ambi-format not found
AL lib: (II) Created device 0512DF40, "OpenAL Soft on AL lib: (II) Found hrtf = "true"
AL lib: (II) Found hrtf-paths = "C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,"
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\*.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr
AL lib: (II) Adding file entry "KEMAR"
AL lib: (II) Adding file entry "KU100-msvc"
AL lib: (II) Adding file entry "KU100"
AL lib: (II) Adding file entry "KU100_Alt"
AL lib: (II) Adding file entry "KU100_WAVE_Sphere"
AL lib: (II) Adding file entry "KU100_WAVE_dataset"
AL lib: (II) Adding file entry "ciair_44100_dataset"
AL lib: (II) Adding file entry "ciair_44100_sphere"
AL lib: (II) Adding file entry "ciair_48000_dataset"
AL lib: (II) Adding file entry "ciair_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_sphere"
AL lib: (II) Adding file entry "scut_kemar_44100_dataset"
AL lib: (II) Adding file entry "scut_kemar_44100_sphere"
AL lib: (II) Adding file entry "scut_kemar_48000_dataset"
AL lib: (II) Adding file entry "scut_kemar_48000_sphere"
AL lib: (II) Searching C:\Users\Penguin\Zandronum\*.mhr
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\openal\hrtf\*.mhr
AL lib: (II) Searching C:\ProgramData\openal\hrtf\*.mhr
AL lib: (II) Got new file "Built-In 44100hz"
AL lib: (II) Adding built-in entry "Built-In 44100hz"
AL lib: (II) Got new file "Built-In 48000hz"
AL lib: (II) Adding built-in entry "Built-In 48000hz"
AL lib: (II) Found default-hrtf = "KU100"
AL lib: (II) Loading C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr...
AL lib: (II) Detected data set format v2
AL lib: (II) Loaded HRTF support for sample rate: 48000hz
AL lib: (II) Pre-reset: *Stereo, Float, *48000hz, 960 / 2880 buffer
AL lib: (II) Got message "Reset Device" (0x0001, this=0511EEB0)
AL lib: (II) Requesting playback format:
    FormatTag      = 0xfffe
    Channels       = 2
    SamplesPerSec  = 48000
    AvgBytesPerSec = 384000
    BlockAlign     = 8
    BitsPerSample  = 32
    Size           = 22
    Samples        = 32
    ChannelMask    = 0x3
    SubFormat      = {00000003-0000-0010-8000-00aa00389b71}
AL lib: (II) Post-reset: Stereo, Float, 48000hz, 960 / 2880 buffer
AL lib: (II) Found stereo-mode = "headphones"
AL lib: (II) HrtfEntry 068FCE00 increasing refcount to 2
AL lib: (II) HrtfEntry 068FCE00 decreasing refcount to 1
AL lib: (II) Found hrtf-mode = "ambi2"
AL lib: (EE) Unexpected hrtf-mode: ambi2
AL lib: (II) Full HRTF rendering enabled, using "KU100"
AL lib: (II) Channel config, Main: 4, Real: 2
AL lib: (II) Allocating 6 channels, 24576 bytes
AL lib: (II) Skipped delay: 12, max delay: 38, new FIR length: 102
AL lib: (II) Found decoder/nfc = "false"
AL lib: (II) Max sources: 256 (255 + 1), effect slots: 64, sends: 2
AL lib: (II) Front stablizer disabled
AL lib: (II) Found dither = "false"
AL lib: (II) Dithering disabled
AL lib: (II) Found output-limiter = "true"
AL lib: (II) Output limiter enabled, 0.0000dB limit
AL lib: (II) Fixed device latency: 1000000ns
AL lib: (II) Got message "Start Device" (0x0002, this=0511EEB0)
AL lib: (II) Key volume-adjust not found
AL lib: (II) Created context 050EC2B0
Playing C:\Users\Penguin\AppData\Local\Temp\zmid2
MIDI file: C:\Users\Penguin\AppData\Local\Temp\zmid2
Format: 0  Tracks: 1  Divisions: 140
AL lib: (II) Got message "Stop Device" (0x0003, this=0511EEB0)
AL lib: (II) Freeing context 050EC2B0
AL lib: (II) Freed 2 context property objects
AL lib: (II) Freed 0 AuxiliaryEffectSlot property objects
AL lib: (II) Freed 1 voice property object
AL lib: (II) Freed 2 listener property objects
AL lib: (II) Freeing device 0512DF40
AL lib: (II) Got message "Close Device" (0x0004, this=0511EEB0)
AL lib: (II) HrtfEntry 068FCE00 decreasing refcount to 0
AL lib: (II) Unloading unused HRTF C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
3rd order ambisonic
AL lib: (II) Initializing library v1.19.1-95ece0b6 master
AL lib: (II) Supported backends: wasapi, dsound, winmm, null, wave
AL lib: (II) Loading config C:\Users\Penguin\AppData\Roaming\alsoft.ini...
AL lib: (II)  found 'hrtf-paths' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,'
AL lib: (II)  found 'period_size' = '960'
AL lib: (II)  found 'periods' = '3'
AL lib: (II)  found 'output-limiter' = 'true'
AL lib: (II)  found 'hrtf' = 'true'
AL lib: (II)  found 'default-hrtf' = 'KU100'
AL lib: (II)  found 'resampler' = 'point'
AL lib: (II)  found 'stereo-mode' = 'headphones'
AL lib: (II)  found 'frequency' = '48000'
AL lib: (II)  found 'dither' = 'false'
AL lib: (II)  found 'hrtf-mode' = 'ambi3'
AL lib: (II)  found 'decoder/quad' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/square.ambdec'
AL lib: (II)  found 'decoder/surround51' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/itu5.1.ambdec'
AL lib: (II)  found 'decoder/surround61' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/hexagon.ambdec'
AL lib: (II)  found 'decoder/surround71' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/3D7.1.ambdec'
AL lib: (II)  found 'decoder/distance-comp' = 'false'
AL lib: (II)  found 'decoder/nfc' = 'false'
AL lib: (II)  found 'decoder/hq-mode' = 'false'
AL lib: (II) Got binary: C:\Users\Penguin\Zandronum, zandronum.exe
AL lib: (II) Loading config C:\Users\Penguin\Zandronum\alsoft.ini...
AL lib: (II) Key disable-cpu-exts not found
AL lib: (II) Detected max CPUID function: 0xb (ext. 0x80000008)
AL lib: (II) Vendor ID: ""
AL lib: (II) Name: "Intel(R) Core(TM) i5 CPU       M 480  @ 2.67GHz"
AL lib: (II) Extensions: +SSE +SSE2 +SSE3 +SSE4.1
AL lib: (II) Key rt-prio not found
AL lib: (II) Found resampler = "point"
AL lib: (II) Key trap-al-error not found
AL lib: (II) Key trap-alc-error not found
AL lib: (II) Key reverb/boost not found
AL lib: (II) Key drivers not found
AL lib: (II) Starting message thread
AL lib: (II) Message thread initialization complete
AL lib: (II) Starting message loop
AL lib: (II) Initialized backend "wasapi"
AL lib: (II) Added "wasapi" for playback
AL lib: (II) Added "wasapi" for capture
AL lib: (II) Key excludefx not found
AL lib: (II) Key default-reverb not found
AL lib: (II) Got message "Open Device" (0x0000, this=050E9E38)
AL lib: (II) Key channels not found
AL lib: (II) Key sample-type not found
AL lib: (II) Found frequency = "48000"
AL lib: (II) Found period_size = "960"
AL lib: (II) Found periods = "3"
AL lib: (II) Key sources not found
AL lib: (II) Key slots not found
AL lib: (II) Key sends not found
AL lib: (II) Key ambi-format not found
AL lib: (II) Created device 0509B100, "OpenAL Soft on AL lib: (II) Found hrtf = "true"
AL lib: (II) Found hrtf-paths = "C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,"
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\*.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr"
AL lib: (II) Adding file entry "KEMAR"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr"
AL lib: (II) Adding file entry "KU100-msvc"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr"
AL lib: (II) Adding file entry "KU100"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr"
AL lib: (II) Adding file entry "KU100_Alt"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr"
AL lib: (II) Adding file entry "KU100_WAVE_Sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr"
AL lib: (II) Adding file entry "KU100_WAVE_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr"
AL lib: (II) Adding file entry "ciair_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr"
AL lib: (II) Adding file entry "ciair_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr"
AL lib: (II) Adding file entry "ciair_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr"
AL lib: (II) Adding file entry "ciair_48000_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_48000_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr"
AL lib: (II) Adding file entry "scut_kemar_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr"
AL lib: (II) Adding file entry "scut_kemar_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr"
AL lib: (II) Adding file entry "scut_kemar_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr"
AL lib: (II) Adding file entry "scut_kemar_48000_sphere"
AL lib: (II) Searching C:\Users\Penguin\Zandronum\*.mhr
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\openal\hrtf\*.mhr
AL lib: (II) Searching C:\ProgramData\openal\hrtf\*.mhr
AL lib: (II) Got new file "Built-In 44100hz"
AL lib: (II) Adding built-in entry "Built-In 44100hz"
AL lib: (II) Got new file "Built-In 48000hz"
AL lib: (II) Adding built-in entry "Built-In 48000hz"
AL lib: (II) Found default-hrtf = "KU100"
AL lib: (II) Loading C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr...
AL lib: (II) Detected data set format v2
AL lib: (II) Loaded HRTF support for sample rate: 48000hz
AL lib: (II) Pre-reset: *Stereo, Float, *48000hz, 960 / 2880 buffer
AL lib: (II) Got message "Reset Device" (0x0001, this=050E9E38)
AL lib: (II) Requesting playback format:
    FormatTag      = 0xfffe
    Channels       = 2
    SamplesPerSec  = 48000
    AvgBytesPerSec = 384000
    BlockAlign     = 8
    BitsPerSample  = 32
    Size           = 22
    Samples        = 32
    ChannelMask    = 0x3
    SubFormat      = {00000003-0000-0010-8000-00aa00389b71}
AL lib: (II) Post-reset: Stereo, Float, 48000hz, 960 / 2880 buffer
AL lib: (II) Found stereo-mode = "headphones"
AL lib: (II) HrtfEntry 068BCE00 increasing refcount to 2
AL lib: (II) HrtfEntry 068BCE00 decreasing refcount to 1
AL lib: (II) Found hrtf-mode = "ambi3"
AL lib: (EE) Unexpected hrtf-mode: ambi3
AL lib: (II) Full HRTF rendering enabled, using "KU100"
AL lib: (II) Channel config, Main: 4, Real: 2
AL lib: (II) Allocating 6 channels, 24576 bytes
AL lib: (II) Skipped delay: 12, max delay: 38, new FIR length: 102
AL lib: (II) Found decoder/nfc = "false"
AL lib: (II) Max sources: 256 (255 + 1), effect slots: 64, sends: 2
AL lib: (II) Front stablizer disabled
AL lib: (II) Found dither = "false"
AL lib: (II) Dithering disabled
AL lib: (II) Found output-limiter = "true"
AL lib: (II) Output limiter enabled, 0.0000dB limit
AL lib: (II) Fixed device latency: 1000000ns
AL lib: (II) Got message "Start Device" (0x0002, this=050E9E38)
AL lib: (II) Key volume-adjust not found
AL lib: (II) Created context 050B4CB0
AL lib: (II) Got message "Stop Device" (0x0003, this=050E9E38)
AL lib: (II) Freeing context 050B4CB0
AL lib: (II) Freed 0 context property objects
AL lib: (II) Freed 0 AuxiliaryEffectSlot property objects
AL lib: (II) Freed 0 voice property objects
AL lib: (II) Freed 1 listener property object
AL lib: (II) Freeing device 0509B100
AL lib: (II) Got message "Close Device" (0x0004, this=050E9E38)
AL lib: (II) HrtfEntry 068BCE00 decreasing refcount to 0
AL lib: (II) Unloading unused HRTF C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II) Got message "Open Device" (0x0000, this=050E9DB0)
AL lib: (II) Key channels not found
AL lib: (II) Key sample-type not found
AL lib: (II) Found frequency = "48000"
AL lib: (II) Found period_size = "960"
AL lib: (II) Found periods = "3"
AL lib: (II) Key sources not found
AL lib: (II) Key slots not found
AL lib: (II) Key sends not found
AL lib: (II) Key ambi-format not found
AL lib: (II) Created device 0509B100, "OpenAL Soft on AL lib: (II) Found hrtf = "true"
AL lib: (II) Found hrtf-paths = "C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,"
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\*.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr
AL lib: (II) Adding file entry "KEMAR"
AL lib: (II) Adding file entry "KU100-msvc"
AL lib: (II) Adding file entry "KU100"
AL lib: (II) Adding file entry "KU100_Alt"
AL lib: (II) Adding file entry "KU100_WAVE_Sphere"
AL lib: (II) Adding file entry "KU100_WAVE_dataset"
AL lib: (II) Adding file entry "ciair_44100_dataset"
AL lib: (II) Adding file entry "ciair_44100_sphere"
AL lib: (II) Adding file entry "ciair_48000_dataset"
AL lib: (II) Adding file entry "ciair_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_sphere"
AL lib: (II) Adding file entry "scut_kemar_44100_dataset"
AL lib: (II) Adding file entry "scut_kemar_44100_sphere"
AL lib: (II) Adding file entry "scut_kemar_48000_dataset"
AL lib: (II) Adding file entry "scut_kemar_48000_sphere"
AL lib: (II) Searching C:\Users\Penguin\Zandronum\*.mhr
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\openal\hrtf\*.mhr
AL lib: (II) Searching C:\ProgramData\openal\hrtf\*.mhr
AL lib: (II) Got new file "Built-In 44100hz"
AL lib: (II) Adding built-in entry "Built-In 44100hz"
AL lib: (II) Got new file "Built-In 48000hz"
AL lib: (II) Adding built-in entry "Built-In 48000hz"
AL lib: (II) Found default-hrtf = "KU100"
AL lib: (II) Loading C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr...
AL lib: (II) Detected data set format v2
AL lib: (II) Loaded HRTF support for sample rate: 48000hz
AL lib: (II) Pre-reset: *Stereo, Float, *48000hz, 960 / 2880 buffer
AL lib: (II) Got message "Reset Device" (0x0001, this=050E9DB0)
AL lib: (II) Requesting playback format:
    FormatTag      = 0xfffe
    Channels       = 2
    SamplesPerSec  = 48000
    AvgBytesPerSec = 384000
    BlockAlign     = 8
    BitsPerSample  = 32
    Size           = 22
    Samples        = 32
    ChannelMask    = 0x3
    SubFormat      = {00000003-0000-0010-8000-00aa00389b71}
AL lib: (II) Post-reset: Stereo, Float, 48000hz, 960 / 2880 buffer
AL lib: (II) Found stereo-mode = "headphones"
AL lib: (II) HrtfEntry 06939F00 increasing refcount to 2
AL lib: (II) HrtfEntry 06939F00 decreasing refcount to 1
AL lib: (II) Found hrtf-mode = "ambi3"
AL lib: (EE) Unexpected hrtf-mode: ambi3
AL lib: (II) Full HRTF rendering enabled, using "KU100"
AL lib: (II) Channel config, Main: 4, Real: 2
AL lib: (II) Allocating 6 channels, 24576 bytes
AL lib: (II) Skipped delay: 12, max delay: 38, new FIR length: 102
AL lib: (II) Found decoder/nfc = "false"
AL lib: (II) Max sources: 256 (255 + 1), effect slots: 64, sends: 2
AL lib: (II) Front stablizer disabled
AL lib: (II) Found dither = "false"
AL lib: (II) Dithering disabled
AL lib: (II) Found output-limiter = "true"
AL lib: (II) Output limiter enabled, 0.0000dB limit
AL lib: (II) Fixed device latency: 1000000ns
AL lib: (II) Got message "Start Device" (0x0002, this=050E9DB0)
AL lib: (II) Key volume-adjust not found
AL lib: (II) Created context 050F8820
AL lib: (II) Got message "Stop Device" (0x0003, this=050E9DB0)
AL lib: (II) Freeing context 050F8820
AL lib: (II) Freed 0 context property objects
AL lib: (II) Freed 0 AuxiliaryEffectSlot property objects
AL lib: (II) Freed 0 voice property objects
AL lib: (II) Freed 1 listener property object
AL lib: (II) Freeing device 0509B100
AL lib: (II) Got message "Close Device" (0x0004, this=050E9DB0)
AL lib: (II) HrtfEntry 06939F00 decreasing refcount to 0
AL lib: (II) Unloading unused HRTF C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II) Got message "Open Device" (0x0000, this=050EA168)
AL lib: (II) Key channels not found
AL lib: (II) Key sample-type not found
AL lib: (II) Found frequency = "48000"
AL lib: (II) Found period_size = "960"
AL lib: (II) Found periods = "3"
AL lib: (II) Key sources not found
AL lib: (II) Key slots not found
AL lib: (II) Key sends not found
AL lib: (II) Key ambi-format not found
AL lib: (II) Created device 0509B100, "OpenAL Soft on AL lib: (II) Found hrtf = "true"
AL lib: (II) Found hrtf-paths = "C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,"
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\*.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr
AL lib: (II) Adding file entry "KEMAR"
AL lib: (II) Adding file entry "KU100-msvc"
AL lib: (II) Adding file entry "KU100"
AL lib: (II) Adding file entry "KU100_Alt"
AL lib: (II) Adding file entry "KU100_WAVE_Sphere"
AL lib: (II) Adding file entry "KU100_WAVE_dataset"
AL lib: (II) Adding file entry "ciair_44100_dataset"
AL lib: (II) Adding file entry "ciair_44100_sphere"
AL lib: (II) Adding file entry "ciair_48000_dataset"
AL lib: (II) Adding file entry "ciair_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_sphere"
AL lib: (II) Adding file entry "scut_kemar_44100_dataset"
AL lib: (II) Adding file entry "scut_kemar_44100_sphere"
AL lib: (II) Adding file entry "scut_kemar_48000_dataset"
AL lib: (II) Adding file entry "scut_kemar_48000_sphere"
AL lib: (II) Searching C:\Users\Penguin\Zandronum\*.mhr
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\openal\hrtf\*.mhr
AL lib: (II) Searching C:\ProgramData\openal\hrtf\*.mhr
AL lib: (II) Got new file "Built-In 44100hz"
AL lib: (II) Adding built-in entry "Built-In 44100hz"
AL lib: (II) Got new file "Built-In 48000hz"
AL lib: (II) Adding built-in entry "Built-In 48000hz"
AL lib: (II) Found default-hrtf = "KU100"
AL lib: (II) Loading C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr...
AL lib: (II) Detected data set format v2
AL lib: (II) Loaded HRTF support for sample rate: 48000hz
AL lib: (II) Pre-reset: *Stereo, Float, *48000hz, 960 / 2880 buffer
AL lib: (II) Got message "Reset Device" (0x0001, this=050EA168)
AL lib: (II) Requesting playback format:
    FormatTag      = 0xfffe
    Channels       = 2
    SamplesPerSec  = 48000
    AvgBytesPerSec = 384000
    BlockAlign     = 8
    BitsPerSample  = 32
    Size           = 22
    Samples        = 32
    ChannelMask    = 0x3
    SubFormat      = {00000003-0000-0010-8000-00aa00389b71}
AL lib: (II) Post-reset: Stereo, Float, 48000hz, 960 / 2880 buffer
AL lib: (II) Found stereo-mode = "headphones"
AL lib: (II) HrtfEntry 06939F00 increasing refcount to 2
AL lib: (II) HrtfEntry 06939F00 decreasing refcount to 1
AL lib: (II) Found hrtf-mode = "ambi3"
AL lib: (EE) Unexpected hrtf-mode: ambi3
AL lib: (II) Full HRTF rendering enabled, using "KU100"
AL lib: (II) Channel config, Main: 4, Real: 2
AL lib: (II) Allocating 6 channels, 24576 bytes
AL lib: (II) Skipped delay: 12, max delay: 38, new FIR length: 102
AL lib: (II) Found decoder/nfc = "false"
AL lib: (II) Max sources: 256 (255 + 1), effect slots: 64, sends: 2
AL lib: (II) Front stablizer disabled
AL lib: (II) Found dither = "false"
AL lib: (II) Dithering disabled
AL lib: (II) Found output-limiter = "true"
AL lib: (II) Output limiter enabled, 0.0000dB limit
AL lib: (II) Fixed device latency: 1000000ns
AL lib: (II) Got message "Start Device" (0x0002, this=050EA168)
AL lib: (II) Key volume-adjust not found
AL lib: (II) Created context 050F8820
AL lib: (II) Got message "Stop Device" (0x0003, this=050EA168)
AL lib: (II) Freeing context 050F8820
AL lib: (II) Freed 0 context property objects
AL lib: (II) Freed 0 AuxiliaryEffectSlot property objects
AL lib: (II) Freed 0 voice property objects
AL lib: (II) Freed 1 listener property object
AL lib: (II) Freeing device 0509B100
AL lib: (II) Got message "Close Device" (0x0004, this=050EA168)
AL lib: (II) HrtfEntry 06939F00 decreasing refcount to 0
AL lib: (II) Unloading unused HRTF C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II) Got message "Open Device" (0x0000, this=050EA0E0)
AL lib: (II) Key channels not found
AL lib: (II) Key sample-type not found
AL lib: (II) Found frequency = "48000"
AL lib: (II) Found period_size = "960"
AL lib: (II) Found periods = "3"
AL lib: (II) Key sources not found
AL lib: (II) Key slots not found
AL lib: (II) Key sends not found
AL lib: (II) Key ambi-format not found
AL lib: (II) Created device 0509B100, "OpenAL Soft on AL lib: (II) Found hrtf = "true"
AL lib: (II) Found hrtf-paths = "C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,"
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\*.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr
AL lib: (II) Adding file entry "KEMAR"
AL lib: (II) Adding file entry "KU100-msvc"
AL lib: (II) Adding file entry "KU100"
AL lib: (II) Adding file entry "KU100_Alt"
AL lib: (II) Adding file entry "KU100_WAVE_Sphere"
AL lib: (II) Adding file entry "KU100_WAVE_dataset"
AL lib: (II) Adding file entry "ciair_44100_dataset"
AL lib: (II) Adding file entry "ciair_44100_sphere"
AL lib: (II) Adding file entry "ciair_48000_dataset"
AL lib: (II) Adding file entry "ciair_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_sphere"
AL lib: (II) Adding file entry "scut_kemar_44100_dataset"
AL lib: (II) Adding file entry "scut_kemar_44100_sphere"
AL lib: (II) Adding file entry "scut_kemar_48000_dataset"
AL lib: (II) Adding file entry "scut_kemar_48000_sphere"
AL lib: (II) Searching C:\Users\Penguin\Zandronum\*.mhr
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\openal\hrtf\*.mhr
AL lib: (II) Searching C:\ProgramData\openal\hrtf\*.mhr
AL lib: (II) Got new file "Built-In 44100hz"
AL lib: (II) Adding built-in entry "Built-In 44100hz"
AL lib: (II) Got new file "Built-In 48000hz"
AL lib: (II) Adding built-in entry "Built-In 48000hz"
AL lib: (II) Found default-hrtf = "KU100"
AL lib: (II) Loading C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr...
AL lib: (II) Detected data set format v2
AL lib: (II) Loaded HRTF support for sample rate: 48000hz
AL lib: (II) Pre-reset: *Stereo, Float, *48000hz, 960 / 2880 buffer
AL lib: (II) Got message "Reset Device" (0x0001, this=050EA0E0)
AL lib: (II) Requesting playback format:
    FormatTag      = 0xfffe
    Channels       = 2
    SamplesPerSec  = 48000
    AvgBytesPerSec = 384000
    BlockAlign     = 8
    BitsPerSample  = 32
    Size           = 22
    Samples        = 32
    ChannelMask    = 0x3
    SubFormat      = {00000003-0000-0010-8000-00aa00389b71}
AL lib: (II) Post-reset: Stereo, Float, 48000hz, 960 / 2880 buffer
AL lib: (II) Found stereo-mode = "headphones"
AL lib: (II) HrtfEntry 06939F00 increasing refcount to 2
AL lib: (II) HrtfEntry 06939F00 decreasing refcount to 1
AL lib: (II) Found hrtf-mode = "ambi3"
AL lib: (EE) Unexpected hrtf-mode: ambi3
AL lib: (II) Full HRTF rendering enabled, using "KU100"
AL lib: (II) Channel config, Main: 4, Real: 2
AL lib: (II) Allocating 6 channels, 24576 bytes
AL lib: (II) Skipped delay: 12, max delay: 38, new FIR length: 102
AL lib: (II) Found decoder/nfc = "false"
AL lib: (II) Max sources: 256 (255 + 1), effect slots: 64, sends: 2
AL lib: (II) Front stablizer disabled
AL lib: (II) Found dither = "false"
AL lib: (II) Dithering disabled
AL lib: (II) Found output-limiter = "true"
AL lib: (II) Output limiter enabled, 0.0000dB limit
AL lib: (II) Fixed device latency: 1000000ns
AL lib: (II) Got message "Start Device" (0x0002, this=050EA0E0)
AL lib: (II) Key volume-adjust not found
AL lib: (II) Created context 050F8820
Playing C:\Users\Penguin\AppData\Local\Temp\zmid2
MIDI file: C:\Users\Penguin\AppData\Local\Temp\zmid2
Format: 0  Tracks: 1  Divisions: 140
AL lib: (II) Got message "Stop Device" (0x0003, this=050EA0E0)
AL lib: (II) Freeing context 050F8820
AL lib: (II) Freed 2 context property objects
AL lib: (II) Freed 0 AuxiliaryEffectSlot property objects
AL lib: (II) Freed 1 voice property object
AL lib: (II) Freed 2 listener property objects
AL lib: (II) Freeing device 0509B100
AL lib: (II) Got message "Close Device" (0x0004, this=050EA0E0)
AL lib: (II) HrtfEntry 06939F00 decreasing refcount to 0
AL lib: (II) Unloading unused HRTF C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
Default (Full)
AL lib: (II) Initializing library v1.19.1-95ece0b6 master
AL lib: (II) Supported backends: wasapi, dsound, winmm, null, wave
AL lib: (II) Loading config C:\Users\Penguin\AppData\Roaming\alsoft.ini...
AL lib: (II)  found 'hrtf-paths' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,'
AL lib: (II)  found 'period_size' = '960'
AL lib: (II)  found 'periods' = '3'
AL lib: (II)  found 'output-limiter' = 'true'
AL lib: (II)  found 'hrtf' = 'true'
AL lib: (II)  found 'default-hrtf' = 'KU100'
AL lib: (II)  found 'resampler' = 'point'
AL lib: (II)  found 'stereo-mode' = 'headphones'
AL lib: (II)  found 'frequency' = '48000'
AL lib: (II)  found 'dither' = 'false'
AL lib: (II)  found 'decoder/quad' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/square.ambdec'
AL lib: (II)  found 'decoder/surround51' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/itu5.1.ambdec'
AL lib: (II)  found 'decoder/surround61' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/hexagon.ambdec'
AL lib: (II)  found 'decoder/surround71' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/3D7.1.ambdec'
AL lib: (II)  found 'decoder/distance-comp' = 'false'
AL lib: (II)  found 'decoder/nfc' = 'false'
AL lib: (II)  found 'decoder/hq-mode' = 'false'
AL lib: (II) Got binary: C:\Users\Penguin\Zandronum, zandronum.exe
AL lib: (II) Loading config C:\Users\Penguin\Zandronum\alsoft.ini...
AL lib: (II) Key disable-cpu-exts not found
AL lib: (II) Detected max CPUID function: 0xb (ext. 0x80000008)
AL lib: (II) Vendor ID: ""
AL lib: (II) Name: "Intel(R) Core(TM) i5 CPU       M 480  @ 2.67GHz"
AL lib: (II) Extensions: +SSE +SSE2 +SSE3 +SSE4.1
AL lib: (II) Key rt-prio not found
AL lib: (II) Found resampler = "point"
AL lib: (II) Key trap-al-error not found
AL lib: (II) Key trap-alc-error not found
AL lib: (II) Key reverb/boost not found
AL lib: (II) Key drivers not found
AL lib: (II) Starting message thread
AL lib: (II) Message thread initialization complete
AL lib: (II) Starting message loop
AL lib: (II) Initialized backend "wasapi"
AL lib: (II) Added "wasapi" for playback
AL lib: (II) Added "wasapi" for capture
AL lib: (II) Key excludefx not found
AL lib: (II) Key default-reverb not found
AL lib: (II) Got message "Open Device" (0x0000, this=0508D2C8)
AL lib: (II) Key channels not found
AL lib: (II) Key sample-type not found
AL lib: (II) Found frequency = "48000"
AL lib: (II) Found period_size = "960"
AL lib: (II) Found periods = "3"
AL lib: (II) Key sources not found
AL lib: (II) Key slots not found
AL lib: (II) Key sends not found
AL lib: (II) Key ambi-format not found
AL lib: (II) Created device 0509C440, "OpenAL Soft on AL lib: (II) Found hrtf = "true"
AL lib: (II) Found hrtf-paths = "C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,"
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\*.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr"
AL lib: (II) Adding file entry "KEMAR"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr"
AL lib: (II) Adding file entry "KU100-msvc"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr"
AL lib: (II) Adding file entry "KU100"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr"
AL lib: (II) Adding file entry "KU100_Alt"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr"
AL lib: (II) Adding file entry "KU100_WAVE_Sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr"
AL lib: (II) Adding file entry "KU100_WAVE_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr"
AL lib: (II) Adding file entry "ciair_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr"
AL lib: (II) Adding file entry "ciair_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr"
AL lib: (II) Adding file entry "ciair_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr"
AL lib: (II) Adding file entry "ciair_48000_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_48000_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr"
AL lib: (II) Adding file entry "scut_kemar_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr"
AL lib: (II) Adding file entry "scut_kemar_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr"
AL lib: (II) Adding file entry "scut_kemar_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr"
AL lib: (II) Adding file entry "scut_kemar_48000_sphere"
AL lib: (II) Searching C:\Users\Penguin\Zandronum\*.mhr
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\openal\hrtf\*.mhr
AL lib: (II) Searching C:\ProgramData\openal\hrtf\*.mhr
AL lib: (II) Got new file "Built-In 44100hz"
AL lib: (II) Adding built-in entry "Built-In 44100hz"
AL lib: (II) Got new file "Built-In 48000hz"
AL lib: (II) Adding built-in entry "Built-In 48000hz"
AL lib: (II) Found default-hrtf = "KU100"
AL lib: (II) Loading C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr...
AL lib: (II) Detected data set format v2
AL lib: (II) Loaded HRTF support for sample rate: 48000hz
AL lib: (II) Pre-reset: *Stereo, Float, *48000hz, 960 / 2880 buffer
AL lib: (II) Got message "Reset Device" (0x0001, this=0508D2C8)
AL lib: (II) Requesting playback format:
    FormatTag      = 0xfffe
    Channels       = 2
    SamplesPerSec  = 48000
    AvgBytesPerSec = 384000
    BlockAlign     = 8
    BitsPerSample  = 32
    Size           = 22
    Samples        = 32
    ChannelMask    = 0x3
    SubFormat      = {00000003-0000-0010-8000-00aa00389b71}
AL lib: (II) Post-reset: Stereo, Float, 48000hz, 960 / 2880 buffer
AL lib: (II) Found stereo-mode = "headphones"
AL lib: (II) HrtfEntry 0691CE00 increasing refcount to 2
AL lib: (II) HrtfEntry 0691CE00 decreasing refcount to 1
AL lib: (II) Key hrtf-mode not found
AL lib: (II) Full HRTF rendering enabled, using "KU100"
AL lib: (II) Channel config, Main: 4, Real: 2
AL lib: (II) Allocating 6 channels, 24576 bytes
AL lib: (II) Skipped delay: 12, max delay: 38, new FIR length: 102
AL lib: (II) Found decoder/nfc = "false"
AL lib: (II) Max sources: 256 (255 + 1), effect slots: 64, sends: 2
AL lib: (II) Front stablizer disabled
AL lib: (II) Found dither = "false"
AL lib: (II) Dithering disabled
AL lib: (II) Found output-limiter = "true"
AL lib: (II) Output limiter enabled, 0.0000dB limit
AL lib: (II) Fixed device latency: 1000000ns
AL lib: (II) Got message "Start Device" (0x0002, this=0508D2C8)
AL lib: (II) Key volume-adjust not found
AL lib: (II) Created context 050A5E70
AL lib: (II) Got message "Stop Device" (0x0003, this=0508D2C8)
AL lib: (II) Freeing context 050A5E70
AL lib: (II) Freed 0 context property objects
AL lib: (II) Freed 0 AuxiliaryEffectSlot property objects
AL lib: (II) Freed 0 voice property objects
AL lib: (II) Freed 1 listener property object
AL lib: (II) Freeing device 0509C440
AL lib: (II) Got message "Close Device" (0x0004, this=0508D2C8)
AL lib: (II) HrtfEntry 0691CE00 decreasing refcount to 0
AL lib: (II) Unloading unused HRTF C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II) Got message "Open Device" (0x0000, this=0508DA38)
AL lib: (II) Key channels not found
AL lib: (II) Key sample-type not found
AL lib: (II) Found frequency = "48000"
AL lib: (II) Found period_size = "960"
AL lib: (II) Found periods = "3"
AL lib: (II) Key sources not found
AL lib: (II) Key slots not found
AL lib: (II) Key sends not found
AL lib: (II) Key ambi-format not found
AL lib: (II) Created device 0509C440, "OpenAL Soft on AL lib: (II) Found hrtf = "true"
AL lib: (II) Found hrtf-paths = "C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,"
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\*.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr
AL lib: (II) Adding file entry "KEMAR"
AL lib: (II) Adding file entry "KU100-msvc"
AL lib: (II) Adding file entry "KU100"
AL lib: (II) Adding file entry "KU100_Alt"
AL lib: (II) Adding file entry "KU100_WAVE_Sphere"
AL lib: (II) Adding file entry "KU100_WAVE_dataset"
AL lib: (II) Adding file entry "ciair_44100_dataset"
AL lib: (II) Adding file entry "ciair_44100_sphere"
AL lib: (II) Adding file entry "ciair_48000_dataset"
AL lib: (II) Adding file entry "ciair_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_sphere"
AL lib: (II) Adding file entry "scut_kemar_44100_dataset"
AL lib: (II) Adding file entry "scut_kemar_44100_sphere"
AL lib: (II) Adding file entry "scut_kemar_48000_dataset"
AL lib: (II) Adding file entry "scut_kemar_48000_sphere"
AL lib: (II) Searching C:\Users\Penguin\Zandronum\*.mhr
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\openal\hrtf\*.mhr
AL lib: (II) Searching C:\ProgramData\openal\hrtf\*.mhr
AL lib: (II) Got new file "Built-In 44100hz"
AL lib: (II) Adding built-in entry "Built-In 44100hz"
AL lib: (II) Got new file "Built-In 48000hz"
AL lib: (II) Adding built-in entry "Built-In 48000hz"
AL lib: (II) Found default-hrtf = "KU100"
AL lib: (II) Loading C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr...
AL lib: (II) Detected data set format v2
AL lib: (II) Loaded HRTF support for sample rate: 48000hz
AL lib: (II) Pre-reset: *Stereo, Float, *48000hz, 960 / 2880 buffer
AL lib: (II) Got message "Reset Device" (0x0001, this=0508DA38)
AL lib: (II) Requesting playback format:
    FormatTag      = 0xfffe
    Channels       = 2
    SamplesPerSec  = 48000
    AvgBytesPerSec = 384000
    BlockAlign     = 8
    BitsPerSample  = 32
    Size           = 22
    Samples        = 32
    ChannelMask    = 0x3
    SubFormat      = {00000003-0000-0010-8000-00aa00389b71}
AL lib: (II) Post-reset: Stereo, Float, 48000hz, 960 / 2880 buffer
AL lib: (II) Found stereo-mode = "headphones"
AL lib: (II) HrtfEntry 0691CE00 increasing refcount to 2
AL lib: (II) HrtfEntry 0691CE00 decreasing refcount to 1
AL lib: (II) Key hrtf-mode not found
AL lib: (II) Full HRTF rendering enabled, using "KU100"
AL lib: (II) Channel config, Main: 4, Real: 2
AL lib: (II) Allocating 6 channels, 24576 bytes
AL lib: (II) Skipped delay: 12, max delay: 38, new FIR length: 102
AL lib: (II) Found decoder/nfc = "false"
AL lib: (II) Max sources: 256 (255 + 1), effect slots: 64, sends: 2
AL lib: (II) Front stablizer disabled
AL lib: (II) Found dither = "false"
AL lib: (II) Dithering disabled
AL lib: (II) Found output-limiter = "true"
AL lib: (II) Output limiter enabled, 0.0000dB limit
AL lib: (II) Fixed device latency: 1000000ns
AL lib: (II) Got message "Start Device" (0x0002, this=0508DA38)
AL lib: (II) Key volume-adjust not found
AL lib: (II) Created context 050A5E70
AL lib: (II) Got message "Stop Device" (0x0003, this=0508DA38)
AL lib: (II) Freeing context 050A5E70
AL lib: (II) Freed 0 context property objects
AL lib: (II) Freed 0 AuxiliaryEffectSlot property objects
AL lib: (II) Freed 0 voice property objects
AL lib: (II) Freed 1 listener property object
AL lib: (II) Freeing device 0509C440
AL lib: (II) Got message "Close Device" (0x0004, this=0508DA38)
AL lib: (II) HrtfEntry 0691CE00 decreasing refcount to 0
AL lib: (II) Unloading unused HRTF C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II) Got message "Open Device" (0x0000, this=0508CAD0)
AL lib: (II) Key channels not found
AL lib: (II) Key sample-type not found
AL lib: (II) Found frequency = "48000"
AL lib: (II) Found period_size = "960"
AL lib: (II) Found periods = "3"
AL lib: (II) Key sources not found
AL lib: (II) Key slots not found
AL lib: (II) Key sends not found
AL lib: (II) Key ambi-format not found
AL lib: (II) Created device 0509C440, "OpenAL Soft on AL lib: (II) Found hrtf = "true"
AL lib: (II) Found hrtf-paths = "C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,"
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\*.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr
AL lib: (II) Adding file entry "KEMAR"
AL lib: (II) Adding file entry "KU100-msvc"
AL lib: (II) Adding file entry "KU100"
AL lib: (II) Adding file entry "KU100_Alt"
AL lib: (II) Adding file entry "KU100_WAVE_Sphere"
AL lib: (II) Adding file entry "KU100_WAVE_dataset"
AL lib: (II) Adding file entry "ciair_44100_dataset"
AL lib: (II) Adding file entry "ciair_44100_sphere"
AL lib: (II) Adding file entry "ciair_48000_dataset"
AL lib: (II) Adding file entry "ciair_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_sphere"
AL lib: (II) Adding file entry "scut_kemar_44100_dataset"
AL lib: (II) Adding file entry "scut_kemar_44100_sphere"
AL lib: (II) Adding file entry "scut_kemar_48000_dataset"
AL lib: (II) Adding file entry "scut_kemar_48000_sphere"
AL lib: (II) Searching C:\Users\Penguin\Zandronum\*.mhr
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\openal\hrtf\*.mhr
AL lib: (II) Searching C:\ProgramData\openal\hrtf\*.mhr
AL lib: (II) Got new file "Built-In 44100hz"
AL lib: (II) Adding built-in entry "Built-In 44100hz"
AL lib: (II) Got new file "Built-In 48000hz"
AL lib: (II) Adding built-in entry "Built-In 48000hz"
AL lib: (II) Found default-hrtf = "KU100"
AL lib: (II) Loading C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr...
AL lib: (II) Detected data set format v2
AL lib: (II) Loaded HRTF support for sample rate: 48000hz
AL lib: (II) Pre-reset: *Stereo, Float, *48000hz, 960 / 2880 buffer
AL lib: (II) Got message "Reset Device" (0x0001, this=0508CAD0)
AL lib: (II) Requesting playback format:
    FormatTag      = 0xfffe
    Channels       = 2
    SamplesPerSec  = 48000
    AvgBytesPerSec = 384000
    BlockAlign     = 8
    BitsPerSample  = 32
    Size           = 22
    Samples        = 32
    ChannelMask    = 0x3
    SubFormat      = {00000003-0000-0010-8000-00aa00389b71}
AL lib: (II) Post-reset: Stereo, Float, 48000hz, 960 / 2880 buffer
AL lib: (II) Found stereo-mode = "headphones"
AL lib: (II) HrtfEntry 0691CE00 increasing refcount to 2
AL lib: (II) HrtfEntry 0691CE00 decreasing refcount to 1
AL lib: (II) Key hrtf-mode not found
AL lib: (II) Full HRTF rendering enabled, using "KU100"
AL lib: (II) Channel config, Main: 4, Real: 2
AL lib: (II) Allocating 6 channels, 24576 bytes
AL lib: (II) Skipped delay: 12, max delay: 38, new FIR length: 102
AL lib: (II) Found decoder/nfc = "false"
AL lib: (II) Max sources: 256 (255 + 1), effect slots: 64, sends: 2
AL lib: (II) Front stablizer disabled
AL lib: (II) Found dither = "false"
AL lib: (II) Dithering disabled
AL lib: (II) Found output-limiter = "true"
AL lib: (II) Output limiter enabled, 0.0000dB limit
AL lib: (II) Fixed device latency: 1000000ns
AL lib: (II) Got message "Start Device" (0x0002, this=0508CAD0)
AL lib: (II) Key volume-adjust not found
AL lib: (II) Created context 050A5E70
AL lib: (II) Got message "Stop Device" (0x0003, this=0508CAD0)
AL lib: (II) Freeing context 050A5E70
AL lib: (II) Freed 0 context property objects
AL lib: (II) Freed 0 AuxiliaryEffectSlot property objects
AL lib: (II) Freed 0 voice property objects
AL lib: (II) Freed 1 listener property object
AL lib: (II) Freeing device 0509C440
AL lib: (II) Got message "Close Device" (0x0004, this=0508CAD0)
AL lib: (II) HrtfEntry 0691CE00 decreasing refcount to 0
AL lib: (II) Unloading unused HRTF C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II) Got message "Open Device" (0x0000, this=0508CAD0)
AL lib: (II) Key channels not found
AL lib: (II) Key sample-type not found
AL lib: (II) Found frequency = "48000"
AL lib: (II) Found period_size = "960"
AL lib: (II) Found periods = "3"
AL lib: (II) Key sources not found
AL lib: (II) Key slots not found
AL lib: (II) Key sends not found
AL lib: (II) Key ambi-format not found
AL lib: (II) Created device 0509C440, "OpenAL Soft on AL lib: (II) Found hrtf = "true"
AL lib: (II) Found hrtf-paths = "C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,"
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\*.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr
AL lib: (II) Adding file entry "KEMAR"
AL lib: (II) Adding file entry "KU100-msvc"
AL lib: (II) Adding file entry "KU100"
AL lib: (II) Adding file entry "KU100_Alt"
AL lib: (II) Adding file entry "KU100_WAVE_Sphere"
AL lib: (II) Adding file entry "KU100_WAVE_dataset"
AL lib: (II) Adding file entry "ciair_44100_dataset"
AL lib: (II) Adding file entry "ciair_44100_sphere"
AL lib: (II) Adding file entry "ciair_48000_dataset"
AL lib: (II) Adding file entry "ciair_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_48000_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_sphere"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_dataset"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_sphere"
AL lib: (II) Adding file entry "scut_kemar_44100_dataset"
AL lib: (II) Adding file entry "scut_kemar_44100_sphere"
AL lib: (II) Adding file entry "scut_kemar_48000_dataset"
AL lib: (II) Adding file entry "scut_kemar_48000_sphere"
AL lib: (II) Searching C:\Users\Penguin\Zandronum\*.mhr
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\openal\hrtf\*.mhr
AL lib: (II) Searching C:\ProgramData\openal\hrtf\*.mhr
AL lib: (II) Got new file "Built-In 44100hz"
AL lib: (II) Adding built-in entry "Built-In 44100hz"
AL lib: (II) Got new file "Built-In 48000hz"
AL lib: (II) Adding built-in entry "Built-In 48000hz"
AL lib: (II) Found default-hrtf = "KU100"
AL lib: (II) Loading C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr...
AL lib: (II) Detected data set format v2
AL lib: (II) Loaded HRTF support for sample rate: 48000hz
AL lib: (II) Pre-reset: *Stereo, Float, *48000hz, 960 / 2880 buffer
AL lib: (II) Got message "Reset Device" (0x0001, this=0508CAD0)
AL lib: (II) Requesting playback format:
    FormatTag      = 0xfffe
    Channels       = 2
    SamplesPerSec  = 48000
    AvgBytesPerSec = 384000
    BlockAlign     = 8
    BitsPerSample  = 32
    Size           = 22
    Samples        = 32
    ChannelMask    = 0x3
    SubFormat      = {00000003-0000-0010-8000-00aa00389b71}
AL lib: (II) Post-reset: Stereo, Float, 48000hz, 960 / 2880 buffer
AL lib: (II) Found stereo-mode = "headphones"
AL lib: (II) HrtfEntry 0691CE00 increasing refcount to 2
AL lib: (II) HrtfEntry 0691CE00 decreasing refcount to 1
AL lib: (II) Key hrtf-mode not found
AL lib: (II) Full HRTF rendering enabled, using "KU100"
AL lib: (II) Channel config, Main: 4, Real: 2
AL lib: (II) Allocating 6 channels, 24576 bytes
AL lib: (II) Skipped delay: 12, max delay: 38, new FIR length: 102
AL lib: (II) Found decoder/nfc = "false"
AL lib: (II) Max sources: 256 (255 + 1), effect slots: 64, sends: 2
AL lib: (II) Front stablizer disabled
AL lib: (II) Found dither = "false"
AL lib: (II) Dithering disabled
AL lib: (II) Found output-limiter = "true"
AL lib: (II) Output limiter enabled, 0.0000dB limit
AL lib: (II) Fixed device latency: 1000000ns
AL lib: (II) Got message "Start Device" (0x0002, this=0508CAD0)
AL lib: (II) Key volume-adjust not found
AL lib: (II) Created context 05052E90
Playing C:\Users\Penguin\AppData\Local\Temp\zmid2
MIDI file: C:\Users\Penguin\AppData\Local\Temp\zmid2
Format: 0  Tracks: 1  Divisions: 140
AL lib: (II) Got message "Stop Device" (0x0003, this=0508CAD0)
AL lib: (II) Freeing context 05052E90
AL lib: (II) Freed 2 context property objects
AL lib: (II) Freed 0 AuxiliaryEffectSlot property objects
AL lib: (II) Freed 1 voice property object
AL lib: (II) Freed 2 listener property objects
AL lib: (II) Freeing device 0509C440
AL lib: (II) Got message "Close Device" (0x0004, this=0508CAD0)
AL lib: (II) HrtfEntry 0691CE00 decreasing refcount to 0
AL lib: (II) Unloading unused HRTF C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
Full
AL lib: (II) Initializing library v1.19.1-95ece0b6 master
AL lib: (II) Supported backends: wasapi, dsound, winmm, null, wave
AL lib: (II) Loading config C:\Users\Penguin\AppData\Roaming\alsoft.ini...
AL lib: (II)  found 'hrtf-paths' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,'
AL lib: (II)  found 'period_size' = '960'
AL lib: (II)  found 'periods' = '3'
AL lib: (II)  found 'output-limiter' = 'true'
AL lib: (II)  found 'hrtf' = 'true'
AL lib: (II)  found 'default-hrtf' = 'KU100'
AL lib: (II)  found 'resampler' = 'point'
AL lib: (II)  found 'stereo-mode' = 'headphones'
AL lib: (II)  found 'frequency' = '48000'
AL lib: (II)  found 'dither' = 'false'
AL lib: (II)  found 'hrtf-mode' = 'full'
AL lib: (II)  found 'decoder/quad' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/square.ambdec'
AL lib: (II)  found 'decoder/surround51' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/itu5.1.ambdec'
AL lib: (II)  found 'decoder/surround61' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/hexagon.ambdec'
AL lib: (II)  found 'decoder/surround71' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/3D7.1.ambdec'
AL lib: (II)  found 'decoder/distance-comp' = 'false'
AL lib: (II)  found 'decoder/nfc' = 'false'
AL lib: (II)  found 'decoder/hq-mode' = 'false'
AL lib: (II) Got binary: C:\Users\Penguin\Zandronum, zandronum.exe
AL lib: (II) Loading config C:\Users\Penguin\Zandronum\alsoft.ini...
AL lib: (II) Key disable-cpu-exts not found
AL lib: (II) Detected max CPUID function: 0xb (ext. 0x80000008)
AL lib: (II) Vendor ID: ""
AL lib: (II) Name: "Intel(R) Core(TM) i5 CPU       M 480  @ 2.67GHz"
AL lib: (II) Extensions: +SSE +SSE2 +SSE3 +SSE4.1
AL lib: (II) Key rt-prio not found
AL lib: (II) Found resampler = "point"
AL lib: (II) Key trap-al-error not found
AL lib: (II) Key trap-alc-error not found
AL lib: (II) Key reverb/boost not found
AL lib: (II) Key drivers not found
AL lib: (II) Starting message thread
AL lib: (II) Message thread initialization complete
AL lib: (II) Starting message loop
AL lib: (II) Initialized backend "wasapi"
AL lib: (II) Added "wasapi" for playback
AL lib: (II) Added "wasapi" for capture
AL lib: (II) Key excludefx not found
AL lib: (II) Key default-reverb not found
AL lib: (II) Got message "Open Device" (0x0000, this=050DBBB0)
AL lib: (II) Key channels not found
AL lib: (II) Key sample-type not found
AL lib: (II) Found frequency = "48000"
AL lib: (II) Found period_size = "960"
AL lib: (II) Found periods = "3"
AL lib: (II) Key sources not found
AL lib: (II) Key slots not found
AL lib: (II) Key sends not found
AL lib: (II) Key ambi-format not found
AL lib: (II) Created device 050EB520, "OpenAL Soft on AL lib: (II) Found hrtf = "true"
AL lib: (II) Found hrtf-paths = "C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,"
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\*.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr
AL lib: (II)  got C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KEMAR.mhr"
AL lib: (II) Adding file entry "KEMAR"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100-msvc.mhr"
AL lib: (II) Adding file entry "KU100-msvc"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr"
AL lib: (II) Adding file entry "KU100"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_Alt.mhr"
AL lib: (II) Adding file entry "KU100_Alt"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_Sphere.mhr"
AL lib: (II) Adding file entry "KU100_WAVE_Sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100_WAVE_dataset.mhr"
AL lib: (II) Adding file entry "KU100_WAVE_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_dataset.mhr"
AL lib: (II) Adding file entry "ciair_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_44100_sphere.mhr"
AL lib: (II) Adding file entry "ciair_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_dataset.mhr"
AL lib: (II) Adding file entry "ciair_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\ciair_48000_sphere.mhr"
AL lib: (II) Adding file entry "ciair_48000_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_44100_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_48000_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_48000_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_44100_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_dataset.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\mit_kemar_sofa_48000_sphere.mhr"
AL lib: (II) Adding file entry "mit_kemar_sofa_48000_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_dataset.mhr"
AL lib: (II) Adding file entry "scut_kemar_44100_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_44100_sphere.mhr"
AL lib: (II) Adding file entry "scut_kemar_44100_sphere"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_dataset.mhr"
AL lib: (II) Adding file entry "scut_kemar_48000_dataset"
AL lib: (II) Got new file "C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\scut_kemar_48000_sphere.mhr"
AL lib: (II) Adding file entry "scut_kemar_48000_sphere"
AL lib: (II) Searching C:\Users\Penguin\Zandronum\*.mhr
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\openal\hrtf\*.mhr
AL lib: (II) Searching C:\ProgramData\openal\hrtf\*.mhr
AL lib: (II) Got new file "Built-In 44100hz"
AL lib: (II) Adding built-in entry "Built-In 44100hz"
AL lib: (II) Got new file "Built-In 48000hz"
AL lib: (II) Adding built-in entry "Built-In 48000hz"
AL lib: (II) Found default-hrtf = "KU100"
AL lib: (II) Loading C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\KU100.mhr...
AL lib: (II) Detected data set format v2
AL lib: (II) Loaded HRTF support for sample rate: 48000hz
AL lib: (II) Pre-reset: *Stereo, Float, *48000hz, 960 / 2880 buffer
AL lib: (II) Got message "Reset Device" (0x0001, this=050DBBB0)
AL lib: (II) Requesting playback format:
    FormatTag      = 0xfffe
    Channels       = 2
    SamplesPerSec  = 48000
    AvgBytesPerSec = 384000
    BlockAlign     = 8
    BitsPerSample  = 32
    Size           = 22
    Samples        = 32
    ChannelMask    = 0x3
    SubFormat      = {00000003-0000-0010-8000-00aa00389b71}
AL lib: (II) Post-reset: Stereo, Float, 48000hz, 960 / 2880 buffer
AL lib: (II) Found stereo-mode = "headphones"
AL lib: (II) HrtfEntry 068BCE00 increasing refcount to 2
AL lib: (II) HrtfEntry 068BCE00 decreasing refcount to 1
AL lib: (II) Found hrtf-mode = "full"
AL lib: (II) Third-Order HRTF rendering enabled, using "KU100"

I did it 3 times but all this crashes. panning.cpp line 648 is weird.

Call stack
    msvcp140d.dll!std::_Debug_message(const wchar_t * message, const wchar_t * file, unsigned int line) Line 11 C++
    OpenAL32.dll!std::_Array_const_iterator::operator+=(int _Off) Line 1794   C++
    OpenAL32.dll!std::_Array_const_iterator::operator+(int _Off) Line 1809    C++
>   OpenAL32.dll!`anonymous namespace'::InitHrtfPanning(ALCdevice * device) Line 648    C++
    OpenAL32.dll!aluInitRenderer(ALCdevice * device, int hrtf_id, HrtfRequestMode hrtf_appreq, HrtfRequestMode hrtf_userreq) Line 820   C++
    OpenAL32.dll!UpdateDeviceParams(ALCdevice * device, const int * attrList) Line 1959 C++
    OpenAL32.dll!alcCreateContext(ALCdevice * device, const int * attrList) Line 3300   C++
    fmodex.dll!10012510()   Unknown
    [Frames below may be incorrect and/or missing, no symbols loaded for fmodex.dll]    
    fmodex.dll!100126b7()   Unknown
    fmodex.dll!10013bd3()   Unknown
    fmodex.dll!100842d1()   Unknown
    fmodex.dll!10022e85()   Unknown
    zandronum.exe!FMODSoundRenderer::Init() Line 852    C++
    zandronum.exe!FMODSoundRenderer::FMODSoundRenderer() Line 622   C++
    zandronum.exe!I_InitSound() Line 266    C++
    zandronum.exe!D_DoomMain() Line 2911    C++
    zandronum.exe!DoMain(HINSTANCE__ * hInstance) Line 1061 C++
    zandronum.exe!WinMain(HINSTANCE__ * hInstance, HINSTANCE__ * nothing, char * cmdline, int nCmdShow) Line 1355   C++
    [External Code] 
kcat commented 5 years ago

Yeah, something is really not right there. It's not recognizing any of the ambi modes for some reason and falls back to the default/full:

AL lib: (II) Found hrtf-mode = "ambi1"
AL lib: (EE) Unexpected hrtf-mode: ambi1
AL lib: (II) Full HRTF rendering enabled, using "KU100"

Whereas it does recognize full, but tries third-order before crashing:

AL lib: (II) Found hrtf-mode = "full"
AL lib: (II) Third-Order HRTF rendering enabled, using "KU100"

If I didn't know better, I'd say MSVC is mangling the data in static constexpr arrays. What version of MSVC are you using?

PenguinDOOM commented 5 years ago

msvc 2015. It did not crash in 2017. 7bed2fe7ccd2abaa090a4096bad56f220ce1565e and later commits have not been tested yet.

PenguinDOOM commented 5 years ago

crash on line 340 modified in f0977e5cc9f89daf707032514ca712586376c312

Call stack
    msvcp140d.dll!std::_Debug_message(const wchar_t * message, const wchar_t * file, unsigned int line) Line 11 C++
    OpenAL32.dll!std::_Vector_const_iterator,std::allocator > > > >::operator*() Line 73    C++
    OpenAL32.dll!std::_Vector_iterator,std::allocator > > > >::operator*() Line 332 C++
>   OpenAL32.dll!DirectorySearch(const char * path, const char * ext, std::vector,std::allocator >,al::allocator,std::allocator >,4> > * const results) Line 340    C++
    OpenAL32.dll!SearchDataFiles(const char * ext, const char * subdir) Line 359    C++
    OpenAL32.dll!EnumerateHrtf(const char * devname) Line 1279  C++
    OpenAL32.dll!UpdateDeviceParams(ALCdevice * device, const int * attrList) Line 1891 C++
    OpenAL32.dll!alcCreateContext(ALCdevice * device, const int * attrList) Line 3300   C++
    fmodex.dll!10012510()   Unknown
    [Frames below may be incorrect and/or missing, no symbols loaded for fmodex.dll]    
    fmodex.dll!100126b7()   Unknown
    fmodex.dll!10013bd3()   Unknown
    fmodex.dll!100842d1()   Unknown
    fmodex.dll!10022e85()   Unknown
    zandronum.exe!FMODSoundRenderer::Init() Line 852    C++
    zandronum.exe!FMODSoundRenderer::FMODSoundRenderer() Line 622   C++
    zandronum.exe!I_InitSound() Line 266    C++
    zandronum.exe!D_DoomMain() Line 2911    C++
    zandronum.exe!DoMain(HINSTANCE__ * hInstance) Line 1061 C++
    zandronum.exe!WinMain(HINSTANCE__ * hInstance, HINSTANCE__ * nothing, char * cmdline, int nCmdShow) Line 1355   C++
    [External Code] 
OpenAL log
AL lib: (II) Initializing library v1.19.1-73186175 master
AL lib: (II) Supported backends: wasapi, dsound, winmm, null, wave
AL lib: (II) Loading config C:\Users\Penguin\AppData\Roaming\alsoft.ini...
AL lib: (II)  found 'hrtf-paths' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,'
AL lib: (II)  found 'period_size' = '960'
AL lib: (II)  found 'periods' = '3'
AL lib: (II)  found 'output-limiter' = 'true'
AL lib: (II)  found 'hrtf' = 'true'
AL lib: (II)  found 'default-hrtf' = 'Built-In 48000hz'
AL lib: (II)  found 'resampler' = 'point'
AL lib: (II)  found 'stereo-mode' = 'headphones'
AL lib: (II)  found 'frequency' = '48000'
AL lib: (II)  found 'dither' = 'false'
AL lib: (II)  found 'decoder/quad' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/square.ambdec'
AL lib: (II)  found 'decoder/surround51' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/itu5.1.ambdec'
AL lib: (II)  found 'decoder/surround61' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/hexagon.ambdec'
AL lib: (II)  found 'decoder/surround71' = 'C:/Users/Penguin/AppData/Roaming/OpenAL/presets/3D7.1.ambdec'
AL lib: (II)  found 'decoder/distance-comp' = 'false'
AL lib: (II)  found 'decoder/nfc' = 'false'
AL lib: (II)  found 'decoder/hq-mode' = 'false'
AL lib: (II) Got binary: C:\Users\Penguin\Zandronum, zandronum.exe
AL lib: (II) Loading config C:\Users\Penguin\Zandronum\alsoft.ini...
AL lib: (II) Key disable-cpu-exts not found
AL lib: (II) Detected max CPUID function: 0xb (ext. 0x80000008)
AL lib: (II) Vendor ID: ""
AL lib: (II) Name: "Intel(R) Core(TM) i5 CPU       M 480  @ 2.67GHz"
AL lib: (II) Extensions: +SSE +SSE2 +SSE3 +SSE4.1
AL lib: (II) Key rt-prio not found
AL lib: (II) Found resampler = "point"
AL lib: (II) Key trap-al-error not found
AL lib: (II) Key trap-alc-error not found
AL lib: (II) Key reverb/boost not found
AL lib: (II) Key drivers not found
AL lib: (II) Starting message thread
AL lib: (II) Message thread initialization complete
AL lib: (II) Starting message loop
AL lib: (II) Initialized backend "wasapi"
AL lib: (II) Added "wasapi" for playback
AL lib: (II) Added "wasapi" for capture
AL lib: (II) Key excludefx not found
AL lib: (II) Key default-reverb not found
AL lib: (II) Got message "Open Device" (0x0000, this=01EFED88)
AL lib: (II) Key channels not found
AL lib: (II) Key sample-type not found
AL lib: (II) Found frequency = "48000"
AL lib: (II) Found period_size = "960"
AL lib: (II) Found periods = "3"
AL lib: (II) Key sources not found
AL lib: (II) Key slots not found
AL lib: (II) Key sends not found
AL lib: (II) Key ambi-format not found
AL lib: (II) Created device 0511C8C0, "OpenAL Soft on AL lib: (II) Found hrtf = "true"
AL lib: (II) Found hrtf-paths = "C:/Users/Penguin/AppData/Roaming/OpenAL/hrtf_defs,"
AL lib: (II) Searching C:\Users\Penguin\AppData\Roaming\OpenAL\hrtf_defs\*.mhr
d:\agent\_work\1\s\src\vctools\crt\crtw32\stdcpp\thr\mutex.c(51): mutex destroyed while busy
kcat commented 5 years ago

Fixed that crash.

PenguinDOOM commented 5 years ago

Certainly fixed. However, in 2017, Full (Default) and Full will be the same log as ambi1. (ambi1 ~ 3 are working) It is still crashing in 2015.

kcat commented 5 years ago

What if you change the static constexpr HrtfModeEntry hrtf_modes array in InitHrtfPanning to static const HrtfModeEntry hrtf_modes? Does that fix the crash on 2015?

PenguinDOOM commented 5 years ago

It started without crashing but the log is the same as 2017.