| 102 | } |
| 103 | |
| 104 | const char* cFunctionalDCT::getValueName(long i) |
| 105 | { |
| 106 | const char *n = cFunctionalComponent::getValueName(0); |
| 107 | // append coefficient number |
| 108 | if (tmpstr != NULL) free(tmpstr); |
| 109 | tmpstr = myvprint("%s%i",n,i+firstCoeff); |
| 110 | return tmpstr; |
| 111 | } |
| 112 | |
| 113 | long cFunctionalDCT::process(FLOAT_DMEM *in, FLOAT_DMEM *inSorted, FLOAT_DMEM *out, long Nin, long Nout) |
| 114 | { |
no test coverage detected