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

  /external/webrtc/webrtc/modules/audio_processing/transient/
moving_moments_unittest.cc 62 const size_t kInputLength = sizeof(kInput) / sizeof(kInput[0]);
64 const float expected_mean[kInputLength] = {0.f, 0.f, 0.f, 0.f, 0.f};
65 const float expected_mean_squares[kInputLength] = {0.f, 0.f, 0.f, 0.f, 0.f};
67 CalculateMomentsAndVerify(kInput, kInputLength, expected_mean,
73 const size_t kInputLength = sizeof(kInput) / sizeof(kInput[0]);
75 const float expected_mean[kInputLength] =
77 const float expected_mean_squares[kInputLength] =
80 CalculateMomentsAndVerify(kInput, kInputLength, expected_mean,
86 const size_t kInputLength = sizeof(kInput) / sizeof(kInput[0]);
88 const float expected_mean[kInputLength]
    [all...]
  /external/webrtc/webrtc/common_audio/
fir_filter_unittest.cc 27 static const size_t kInputLength = sizeof(kInput) /
42 float output[kInputLength];
44 FIRFilter::Create(kCoefficients, kCoefficientsLength, kInputLength));
45 filter->Filter(kInput, kInputLength, output);
47 VerifyOutput(kInput, output, kInputLength);
52 float output[kInputLength];
54 FIRFilter::Create(kCoefficients, kCoefficientsLength, kInputLength));
55 filter->Filter(kInput, kInputLength, output);
60 EXPECT_FLOAT_EQ(50.f, output[kInputLength - 1]);
65 float output[kInputLength];
    [all...]

Completed in 298 milliseconds