Home
last modified time | relevance | path

Searched refs:uiMbHeight (Results 1 – 3 of 3) sorted by relevance

/third_party/openh264/codec/decoder/core/src/
Dpic_queue.cpp112 uint32_t uiMbHeight = (kiPicHeight + 15) >> 4; in AllocPicture() local
113 uint32_t uiMbCount = uiMbWidth * uiMbHeight; in AllocPicture()
127 …pPic->pReadyEvent = (SWelsDecEvent*)pMa->WelsMallocz (uiMbHeight * sizeof (SWelsDecEvent), "pPic->… in AllocPicture()
128 for (uint32_t i = 0; i < uiMbHeight; ++i) { in AllocPicture()
172 uint32_t uiMbHeight = (pPic->iHeightInPixel + 15) >> 4; in FreePicture() local
173 for (uint32_t i = 0; i < uiMbHeight; ++i) { in FreePicture()
Ddecoder_core.cpp231 uint32_t uiMbHeight = (pCtx->pDec->iHeightInPixel + 15) >> 4; in DecodeFrameConstruction() local
232 for (uint32_t i = 0; i < uiMbHeight; ++i) { in DecodeFrameConstruction()
2574 uint32_t uiMbHeight = (pCtx->pDec->iHeightInPixel + 15) >> 4; in DecodeCurrentAccessUnit() local
2575 for (uint32_t i = 0; i < uiMbHeight; ++i) { in DecodeCurrentAccessUnit()
/third_party/openh264/test/api/
Dencode_options_test.cpp243 unsigned int uiMbHeight = 0; in SliceParamValidationForMode2() local
250 uiMbHeight = (param_.iPicHeight + 15) >> 4; in SliceParamValidationForMode2()
251 uiMbNumInFrame = uiMbWidth * uiMbHeight; in SliceParamValidationForMode2()
279 unsigned int uiMbHeight = 0; in SliceParamValidationForMode3() local
281 uiMbHeight = (param_.iPicHeight + 15) >> 4; in SliceParamValidationForMode3()
284 if (uiMbHeight > MAX_SLICES_NUM) { in SliceParamValidationForMode3()