| 475 | } |
| 476 | |
| 477 | void InitRandomLayerMbType (PDqLayer pDqLayer) { |
| 478 | for (int32_t i = 0; i < pDqLayer->iMbWidth * pDqLayer->iMbHeight; ++i) { |
| 479 | pDqLayer->pMbType[i] = 1 << (rand() % 11); //2^(1 ~ 10) |
| 480 | } |
| 481 | } |
| 482 | |
| 483 | void InitRandomLayerMvData (PDqLayer pDqLayer) { |
| 484 | for (int32_t i = 0; i < pDqLayer->iMbWidth * pDqLayer->iMbHeight; ++i) { |
no outgoing calls
no test coverage detected