diff options
author | Chris Robinson <[email protected]> | 2017-01-21 12:28:54 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-01-21 12:28:54 -0800 |
commit | f4d52f43d87c02769c7649b91ba4afc967e121d2 (patch) | |
tree | fcdeecfb1e1e212c9ac587ef2b890373ddda37c5 /Alc/panning.c | |
parent | 7025660e8be552a4784913e910b9bd65740c1427 (diff) |
Fix coefficient counts for the built-in B-Format decoders
Diffstat (limited to 'Alc/panning.c')
-rw-r--r-- | Alc/panning.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/panning.c b/Alc/panning.c index c263a20e..32227b04 100644 --- a/Alc/panning.c +++ b/Alc/panning.c @@ -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: |