OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:rampsize
(Results
1 - 1
of
1
) sorted by null
/external/webrtc/webrtc/modules/audio_conference_mixer/source/
audio_frame_manipulator.cc
38
const size_t
rampSize
= sizeof(rampArray)/sizeof(rampArray[0]);
56
assert(
rampSize
<= audioFrame.samples_per_channel_);
57
for(size_t i = 0; i <
rampSize
; i++)
66
assert(
rampSize
<= audioFrame.samples_per_channel_);
67
for(size_t i = 0; i <
rampSize
; i++)
69
const size_t rampPos =
rampSize
- 1 - i;
73
memset(&audioFrame.data_[
rampSize
], 0,
74
(audioFrame.samples_per_channel_ -
rampSize
) *
Completed in 524 milliseconds