Fix coefficient counts for the built-in B-Format decoders

This commit is contained in:
Chris Robinson 2017-01-21 12:28:54 -08:00
parent 7025660e8b
commit f4d52f43d8

View File

@ -524,7 +524,7 @@ static void InitPanning(ALCdevice *device)
count = COUNTOF(QuadCfg);
chanmap = QuadCfg;
ambiscale = FIRST_ORDER_SCALE;
coeffcount = 9;
coeffcount = 4;
break;
case DevFmtX51:
@ -545,7 +545,7 @@ static void InitPanning(ALCdevice *device)
count = COUNTOF(X61Cfg);
chanmap = X61Cfg;
ambiscale = SECOND_ORDER_SCALE;
coeffcount = 16;
coeffcount = 9;
break;
case DevFmtX71: