Home | History | Annotate | Download | only in audio

Lines Matching refs:destination

289         float* destination = channelByType(ChannelLeft)->mutableData();
290 vadd(sourceL, 1, sourceR, 1, destination, 1, length());
292 vsmul(destination, 1, &scale, destination, 1, length());
331 float* destination = channelByType(ChannelLeft)->mutableData();
333 vsma(sourceL, 1, &scale, destination, 1, length());
334 vsma(sourceR, 1, &scale, destination, 1, length());
357 float* destination = channelByType(ChannelLeft)->mutableData();
366 vadd(tempData, 1, destination, 1, destination, 1, length());
372 vadd(tempData, 1, destination, 1, destination, 1, length());
375 vadd(sourceC, 1, destination, 1, destination, 1, length());
521 float* destination = channel(channelIndex)->mutableData();
522 vmul(source, 1, gainValues, 1, destination, 1, numberOfGainValues);
567 // Calculate destination length based on the sample-rates.
571 // Create destination bus with same number of channels.
578 float* destination = destinationBus->channel(i)->mutableData();
581 resampler.process(source, destination, sourceLength);
605 float* destination = destinationBus->channel(0)->mutableData();
609 destination[i] = (sourceL[i] + sourceR[i]) / 2;