Trace the HQ decoder order

This commit is contained in:
Chris Robinson
2016-03-23 16:00:07 -07:00
parent 2847590d45
commit 3646cf817c
+4 -1
View File
@@ -643,7 +643,10 @@ ALvoid aluInitPanning(ALCdevice *device)
&device->Dry.NumChannels, AL_FALSE);
device->Dry.AmbiScale = ambiscale;
TRACE("Enabling %s-band ambisonic decoder\n", (conf.FreqBands==1)?"single":"dual");
TRACE("Enabling %s-band %s-order ambisonic decoder\n",
(conf.FreqBands == 1) ? "single" : "dual",
(conf.ChanMask > 0x1ff) ? "third" : (conf.ChanMask > 0xf) ? "second" : "first"
);
bformatdec_reset(device->AmbiDecoder, &conf, count, device->Frequency, speakermap);
ambdec_deinit(&conf);