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

  /external/chromium_org/media/filters/
wsola_internals.cc 91 void QuadraticInterpolation(const float* y_values,
94 float a = 0.5f * (y_values[2] + y_values[0]) - y_values[1];
95 float b = 0.5f * (y_values[2] - y_values[0]);
96 float c = y_values[1];
101 *extremum_value = y_values[1];
wsola_internals.h 45 MEDIA_EXPORT void QuadraticInterpolation(const float* y_values,
audio_renderer_algorithm_unittest.cc 603 float y_values[3]; local
604 y_values[0] = kA - kB + kC;
605 y_values[1] = kC;
606 y_values[2] = kA + kB + kC;
611 internal::QuadraticInterpolation(y_values, &extremum, &extremum_value);
621 float y_values[3]; local
622 y_values[0] = 1.0;
623 y_values[1] = 1.0;
624 y_values[2] = 1.0;
629 internal::QuadraticInterpolation(y_values, &extremum, &extremum_value)
    [all...]

Completed in 66 milliseconds