| 143 | #if defined(X86_ASM) |
| 144 | #if defined(HAVE_AVX2) |
| 145 | void IdctFourResAddPred_ref (uint8_t* pPred, int32_t iStride, int16_t* pRs) { |
| 146 | IdctResAddPred_ref (pPred + 0 * iStride + 0, iStride, pRs + 0 * 16); |
| 147 | IdctResAddPred_ref (pPred + 0 * iStride + 4, iStride, pRs + 1 * 16); |
| 148 | IdctResAddPred_ref (pPred + 4 * iStride + 0, iStride, pRs + 2 * 16); |
| 149 | IdctResAddPred_ref (pPred + 4 * iStride + 4, iStride, pRs + 3 * 16); |
| 150 | } |
| 151 | #endif |
| 152 | #endif |
| 153 |
nothing calls this directly
no test coverage detected