OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:normalizedFrequency
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
BiquadDSPKernel.cpp
71
double
normalizedFrequency
= value1 / nyquist;
75
normalizedFrequency
*= pow(2, detune / 1200);
80
m_biquad.setLowpassParams(
normalizedFrequency
, value2);
84
m_biquad.setHighpassParams(
normalizedFrequency
, value2);
88
m_biquad.setBandpassParams(
normalizedFrequency
, value2);
92
m_biquad.setLowShelfParams(
normalizedFrequency
, gain);
96
m_biquad.setHighShelfParams(
normalizedFrequency
, gain);
100
m_biquad.setPeakingParams(
normalizedFrequency
, value2, gain);
104
m_biquad.setNotchParams(
normalizedFrequency
, value2);
108
m_biquad.setAllpassParams(
normalizedFrequency
, value2)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/platform/audio/
DynamicsCompressor.h
109
void setEmphasisStageParameters(unsigned stageIndex, float gain, float
normalizedFrequency
/* 0 -> 1 */);
DynamicsCompressor.cpp
98
void DynamicsCompressor::setEmphasisStageParameters(unsigned stageIndex, float gain, float
normalizedFrequency
/* 0 -> 1 */)
101
float f1 =
normalizedFrequency
* gk;
102
float f2 =
normalizedFrequency
/ gk;
Completed in 37 milliseconds