зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1587872
ensure one output channel when input is null r=padenot
Differential Revision: https://phabricator.services.mozilla.com/D54675 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
115ab06aac
Коммит
2b63e70947
|
@ -336,7 +336,8 @@ void WorkletNodeEngine::ProcessBlocksOnPorts(AudioNodeTrack* aTrack,
|
|||
aOutput[o].AllocateChannels(mOutputChannelCount[o]);
|
||||
}
|
||||
} else if (aInput.Length() == 1 && aOutput.Length() == 1) {
|
||||
aOutput[0].AllocateChannels(aInput[0].ChannelCount());
|
||||
uint32_t channelCount = std::max(aInput[0].ChannelCount(), 1U);
|
||||
aOutput[0].AllocateChannels(channelCount);
|
||||
} else {
|
||||
for (AudioBlock& output : aOutput) {
|
||||
output.AllocateChannels(1);
|
||||
|
|
Загрузка…
Ссылка в новой задаче