Home | History | Annotate | Download | only in audio_utils

Lines Matching defs:accum

35             int accum = 0;
37 accum += *in++;
39 accum /= channelCount; // round to 0
41 *out++ = accum;
50 float accum = 0;
52 accum += *in++;
55 accum = limiter(accum * M_SQRT1_2);
57 accum *= recipdiv;
60 *out++ = accum;