HomeSort by relevance Sort by last modified time
    Searched refs:kCoefficients (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/webrtc/common_audio/
fir_filter_unittest.cc 20 static const float kCoefficients[] = {0.2f, 0.3f, 0.5f, 0.7f, 0.11f};
21 static const size_t kCoefficientsLength = sizeof(kCoefficients) /
22 sizeof(kCoefficients[0]);
38 const float kCoefficients[] = {1.f, 0.f, 0.f, 0.f, 0.f};
41 kCoefficients, kCoefficientsLength, kInputLength));
48 const float kCoefficients[] = {5.f, 0.f, 0.f, 0.f, 0.f};
51 kCoefficients, kCoefficientsLength, kInputLength));
61 const float kCoefficients[] = {0.f, 0.f, 0.f, 0.f, 1.f};
64 kCoefficients, kCoefficientsLength, kInputLength));
77 kCoefficients, kCoefficientsLength, kInputLength))
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
expand.cc 658 static const int kCoefficients[4] = { -5179, 19931, -16422, 5776 };
659 int32_t temp_sum = kCoefficients[0] << 14;
660 temp_sum += kCoefficients[1] * x1;
661 temp_sum += kCoefficients[2] * x2;
662 temp_sum += kCoefficients[3] * x3;
    [all...]

Completed in 52 milliseconds