OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:framesToProcess
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
OfflineAudioDestinationNode.cpp
120
size_t
framesToProcess
= m_renderTarget->length();
124
while (
framesToProcess
> 0) {
128
size_t framesAvailableToCopy = min(
framesToProcess
, renderQuantumSize);
137
framesToProcess
-= framesAvailableToCopy;
AudioBufferSourceNode.cpp
89
void AudioBufferSourceNode::process(size_t
framesToProcess
)
117
updateSchedulingInfo(
framesToProcess
,
147
bool AudioBufferSourceNode::renderSilenceAndFinishIfNotLooping(AudioBus*, unsigned index, size_t
framesToProcess
)
152
if (
framesToProcess
> 0) {
156
memset(m_destinationChannels[i] + index, 0, sizeof(float) *
framesToProcess
);
249
int
framesToProcess
= numberOfFrames;
262
while (
framesToProcess
> 0) {
264
int framesThisTime = min(
framesToProcess
, framesToEnd);
272
framesToProcess
-= framesThisTime;
277
if (renderSilenceAndFinishIfNotLooping(bus, writeIndex,
framesToProcess
))
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/audio/
VectorMath.cpp
58
void vsmul(const float* sourceP, int sourceStride, const float* scale, float* destP, int destStride, size_t
framesToProcess
)
61
::vsmul(sourceP, sourceStride, scale, destP, destStride,
framesToProcess
);
63
vDSP_vsmul(sourceP, sourceStride, scale, destP, destStride,
framesToProcess
);
67
void vadd(const float* source1P, int sourceStride1, const float* source2P, int sourceStride2, float* destP, int destStride, size_t
framesToProcess
)
70
::vadd(source1P, sourceStride1, source2P, sourceStride2, destP, destStride,
framesToProcess
);
72
vDSP_vadd(source1P, sourceStride1, source2P, sourceStride2, destP, destStride,
framesToProcess
);
76
void vmul(const float* source1P, int sourceStride1, const float* source2P, int sourceStride2, float* destP, int destStride, size_t
framesToProcess
)
79
::vmul(source1P, sourceStride1, source2P, sourceStride2, destP, destStride,
framesToProcess
);
81
vDSP_vmul(source1P, sourceStride1, source2P, sourceStride2, destP, destStride,
framesToProcess
);
85
void zvmul(const float* real1P, const float* imag1P, const float* real2P, const float* imag2P, float* realDestP, float* imagDestP, size_t
framesToProcess
)
[
all
...]
AudioBus.cpp
453
unsigned
framesToProcess
= length();
462
unsigned framesToDezipper = (gainDiff < epsilon) ? 0 :
framesToProcess
;
487
if (framesToDezipper <
framesToProcess
) {
489
vsmul(sources[channelIndex], 1, &gain, destinations[channelIndex], 1,
framesToProcess
- framesToDezipper);
Completed in 71 milliseconds