OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kCoefficients
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/webrtc/common_audio/
fir_filter_unittest.cc
21
static const float
kCoefficients
[] = {0.2f, 0.3f, 0.5f, 0.7f, 0.11f};
22
static const size_t kCoefficientsLength = sizeof(
kCoefficients
) /
23
sizeof(
kCoefficients
[0]);
41
const float
kCoefficients
[] = {1.f, 0.f, 0.f, 0.f, 0.f};
44
FIRFilter::Create(
kCoefficients
, kCoefficientsLength, kInputLength));
51
const float
kCoefficients
[] = {5.f, 0.f, 0.f, 0.f, 0.f};
54
FIRFilter::Create(
kCoefficients
, kCoefficientsLength, kInputLength));
64
const float
kCoefficients
[] = {0.f, 0.f, 0.f, 0.f, 1.f};
67
FIRFilter::Create(
kCoefficients
, kCoefficientsLength, kInputLength));
80
FIRFilter::Create(
kCoefficients
, kCoefficientsLength, kInputLength))
[
all
...]
/external/webrtc/webrtc/modules/audio_processing/transient/
wpd_node_unittest.cc
27
static const float
kCoefficients
[] = {0.2f, -0.3f, 0.5f, -0.7f, 0.11f};
28
static const size_t kCoefficientsLength = sizeof(
kCoefficients
) /
29
sizeof(
kCoefficients
[0]);
32
WPDNode node(kDataLength,
kCoefficients
, kCoefficientsLength);
49
WPDNode node(kDataLength,
kCoefficients
, kCoefficientsLength);
59
WPDNode node(kDataLength,
kCoefficients
, kCoefficientsLength);
/external/webrtc/webrtc/modules/audio_coding/neteq/
expand.cc
701
static const int
kCoefficients
[4] = { -5179, 19931, -16422, 5776 };
702
int32_t temp_sum =
kCoefficients
[0] << 14;
703
temp_sum +=
kCoefficients
[1] * x1;
704
temp_sum +=
kCoefficients
[2] * x2;
705
temp_sum +=
kCoefficients
[3] * x3;
[
all
...]
Completed in 73 milliseconds