Searched defs:CHANNELS (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/services/audioflinger/
H A DAudioResamplerFirProcessNeon.h61 const int CHANNELS = 1; // template specialization does not preserve params local
63 sP -= CHANNELS*((STRIDE>>1)-1);
113 const int CHANNELS = 2; // template specialization does not preserve params local
115 sP -= CHANNELS*((STRIDE>>1)-1);
174 const int CHANNELS = 1; // template specialization does not preserve params local
176 sP -= CHANNELS*((STRIDE>>1)-1);
244 const int CHANNELS = 2; // template specialization does not preserve params local
246 sP -= CHANNELS*((STRIDE>>1)-1);
317 const int CHANNELS = 1; // template specialization does not preserve params local
319 sP -= CHANNELS*((STRID
378 const int CHANNELS = 2; // template specialization does not preserve params local
461 const int CHANNELS = 1; // template specialization does not preserve params local
546 const int CHANNELS = 2; // template specialization does not preserve params local
647 const int CHANNELS = 1; // template specialization does not preserve params local
697 const int CHANNELS = 2; // template specialization does not preserve params local
753 const int CHANNELS = 1; // template specialization does not preserve params local
821 const int CHANNELS = 2; // template specialization does not preserve params local
889 const int CHANNELS = 1; // template specialization does not preserve params local
943 const int CHANNELS = 2; // template specialization does not preserve params local
1008 const int CHANNELS = 1; // template specialization does not preserve params local
1080 const int CHANNELS = 2; // template specialization does not preserve params local
[all...]
H A DAudioResamplerDyn.cpp82 void AudioResamplerDyn<TC, TI, TO>::InBuffer::resize(int CHANNELS, int halfNumCoefs) argument
85 size_t stateCount = halfNumCoefs * CHANNELS * 2 * kStateSizeMultipleOfFilterLength;
90 && mRingFull-mState == (ssize_t) (mStateCount-halfNumCoefs*CHANNELS)) {
101 TI* srcLo = mImpulse - halfNumCoefs*CHANNELS;
102 TI* srcHi = mImpulse + halfNumCoefs*CHANNELS;
119 mImpulse = state + halfNumCoefs*CHANNELS; // actually one sample greater than needed
120 mRingFull = state + mStateCount - halfNumCoefs*CHANNELS;
125 template<int CHANNELS>
129 TI* head = impulse + halfNumCoefs*CHANNELS;
130 for (size_t i=0 ; i<CHANNELS ;
[all...]

Completed in 53 milliseconds