| 12 | using namespace WelsVP; |
| 13 | |
| 14 | static void FillWithRandomData (uint8_t* p, int32_t Len) { |
| 15 | for (int32_t i = 0; i < Len; i++) { |
| 16 | p[i] = rand() % 256; |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | void SampleVariance16x16_ref (uint8_t* pRefY, int32_t iRefStride, uint8_t* pSrcY, int32_t iSrcStride, |
| 21 | SMotionTextureUnit* pMotionTexture) { |
nothing calls this directly
no outgoing calls
no test coverage detected