| 12 | using namespace WelsEnc; |
| 13 | #define SVC_ME_TEST_NUM 10 |
| 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 | //preprocess related |
| 21 | int32_t SumOf8x8SingleBlock_ref (uint8_t* pRef, const int32_t kiRefStride) { |
nothing calls this directly
no outgoing calls
no test coverage detected