Bug 1118372 - Properly apply volume in WaveShaperNodeEngine. r=padenot

This commit is contained in:
Yanis Sellami 2015-06-08 10:57:05 +02:00
Родитель d161a9a425
Коммит ece36044f6
3 изменённых файлов: 50 добавлений и 1 удалений

Просмотреть файл

@ -229,7 +229,9 @@ public:
AllocateAudioBlock(channelCount, aOutput);
for (uint32_t i = 0; i < channelCount; ++i) {
const float* inputBuffer = static_cast<const float*>(aInput.mChannelData[i]);
float* scaledSample = (float *)(aInput.mChannelData[i]);
AudioBlockInPlaceScale(scaledSample, aInput.mVolume);
const float* inputBuffer = static_cast<const float*>(scaledSample);
float* outputBuffer = const_cast<float*> (static_cast<const float*>(aOutput->mChannelData[i]));
float* sampleBuffer;

Просмотреть файл

@ -84,6 +84,7 @@ tags=capturestream
tags=capturestream
[test_bug972678.html]
[test_bug1056032.html]
[test_bug1118372.html]
skip-if = toolkit == 'android' # bug 1056706
[test_channelMergerNode.html]
[test_channelMergerNodeWithVolume.html]

Просмотреть файл

@ -0,0 +1,46 @@
<!DOCTYPE HTML>
<html>
<head>
<title>Test WaveShaperNode with no curve</title>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="text/javascript" src="webaudio.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<pre id="test">
<script class="testbody" type="text/javascript">
SimpleTest.waitForExplicitFinish();
addLoadEvent(function() {
var context = new OfflineAudioContext(1, 2048, 44100);
var osc=context.createOscillator();
var gain=context.createGain();
var shaper=context.createWaveShaper();
gain.gain.value=0.1;
shaper.curve=new Float32Array([-0.5,-0.5,1,1]);
osc.connect(gain);
gain.connect(shaper);
shaper.connect(context.destination);
osc.start(0);
context.startRendering().then(function(buffer) {
var samples = buffer.getChannelData(0);
// the signal should be scaled
var failures = 0;
for (var i = 0; i < 2048; ++i) {
if (samples[i] > 0.5) {
failures = failures + 1;
}
}
ok(failures == 0, "signal should have been rescaled by gain: found " + failures + " points too loud.");
SimpleTest.finish();
});
});
</script>
</pre>
</body>
</html>