Searched refs:stopBandAtten (Results 1 – 3 of 3) sorted by relevance
/frameworks/av/media/libaudioprocessing/ |
D | AudioResamplerDyn.cpp | 244 double stopBandAtten, int inSampleRate, int outSampleRate, double tbwCheat) in createKaiserFir() argument 247 const double tbw = firKaiserTbw(c.mHalfNumCoefs, stopBandAtten); in createKaiserFir() 256 createKaiserFir(c, stopBandAtten, fcr); in createKaiserFir() 261 double stopBandAtten, double fcr) { in createKaiserFir() argument 263 const double tbw = firKaiserTbw(c.mHalfNumCoefs, stopBandAtten); in createKaiserFir() 280 computeWindowedSincMinimumPassbandValue(stopBandAtten); in createKaiserFir() 284 firKaiserGen(coefs, phases, halfLength, stopBandAtten, fcr, attenuation); in createKaiserFir() 290 mStopbandAttenuationDb = stopBandAtten; in createKaiserFir() 291 mPassbandRippleDb = computeWindowedSincPassbandRippleDb(stopBandAtten); in createKaiserFir() 298 c.mL, c.mHalfNumCoefs, stopBandAtten, fcr, attenuation, tbw); in createKaiserFir() [all …]
|
D | AudioResamplerDyn.h | 150 void createKaiserFir(Constants &c, double stopBandAtten, 153 void createKaiserFir(Constants &c, double stopBandAtten, double fcr);
|
D | AudioResamplerFirGen.h | 405 static inline double firKaiserTbw(int halfNumCoef, double stopBandAtten) { 406 return (stopBandAtten - 7.95)/((2.*14.36)*halfNumCoef); 716 double stopBandAtten, double fcr, double atten) { 718 const double beta = computeBeta(stopBandAtten);
|