FastLED 3.9.15
Loading...
Searching...
No Matches

◆ MC2M

#define MC2M ( x)
Value:
{ \
c1 = *coef; coef++; c2 = *coef; coef++; \
vLo = *(vb1+(x)); vHi = *(vb1+(23-(x))); \
sum1L = MADD64(sum1L, vLo, c1); sum2L = MADD64(sum2L, vLo, c2); \
sum1L = MADD64(sum1L, vHi, -c2); sum2L = MADD64(sum2L, vHi, c1); \
}
int x
Definition simple.h:92

Definition at line 102 of file polyphase.hpp.

102#define MC2M(x) { \
103 c1 = *coef; coef++; c2 = *coef; coef++; \
104 vLo = *(vb1+(x)); vHi = *(vb1+(23-(x))); \
105 sum1L = MADD64(sum1L, vLo, c1); sum2L = MADD64(sum2L, vLo, c2); \
106 sum1L = MADD64(sum1L, vHi, -c2); sum2L = MADD64(sum2L, vHi, c1); \
107}

Referenced by fl::third_party::PolyphaseMono().