Searched refs:kiPicWidth (Results 1 – 6 of 6) sorted by relevance
/third_party/openh264/codec/decoder/core/src/ |
D | decoder.cpp | 59 extern PPicture AllocPicture (PWelsDecoderContext pCtx, const int32_t kiPicWidth, const int32_t kiP… 64 const int32_t kiPicWidth, const int32_t kiPicHeight) { in CreatePicBuff() argument 68 if (kiSize <= 0 || kiPicWidth <= 0 || kiPicHeight <= 0) { in CreatePicBuff() 89 PPicture pPic = AllocPicture (pCtx, kiPicWidth, kiPicHeight); in CreatePicBuff() 108 … const int32_t kiPicWidth, const int32_t kiPicHeight, const int32_t kiNewSize) { in IncreasePicBuff() argument 112 if (kiOldSize <= 0 || kiNewSize <= 0 || kiPicWidth <= 0 || kiPicHeight <= 0) { in IncreasePicBuff() 133 PPicture pPic = AllocPicture (pCtx, kiPicWidth, kiPicHeight); in IncreasePicBuff() 170 … const int32_t kiPicWidth, const int32_t kiPicHeight, const int32_t kiNewSize) { in DecreasePicBuff() argument 174 if (kiOldSize <= 0 || kiNewSize <= 0 || kiPicWidth <= 0 || kiPicHeight <= 0) { in DecreasePicBuff() 464 const int32_t kiPicWidth = kiMbWidth << 4; in WelsRequestMem() local [all …]
|
D | pic_queue.cpp | 62 PPicture AllocPicture (PWelsDecoderContext pCtx, const int32_t kiPicWidth, const int32_t kiPicHeigh… in AllocPicture() argument 78 iPicWidth = WELS_ALIGN (kiPicWidth + (PADDING_LENGTH << 1), PICTURE_RESOLUTION_ALIGNMENT); in AllocPicture() 106 pPic->iWidthInPixel = kiPicWidth; in AllocPicture() 111 uint32_t uiMbWidth = (kiPicWidth + 15) >> 4; in AllocPicture()
|
D | decode_slice.cpp | 57 extern PPicture AllocPicture (PWelsDecoderContext pCtx, const int32_t kiPicWidth, const int32_t kiP…
|
/third_party/openh264/codec/encoder/core/src/ |
D | encoder_ext.cpp | 176 const int32_t kiPicWidth, const int32_t kiPicHeight) { in SliceArgumentValidationFixedSliceMode() argument 179 const int32_t iMbWidth = (kiPicWidth + 15) >> 4; in SliceArgumentValidationFixedSliceMode() 497 int32_t kiPicWidth = pSpatialLayer->iVideoWidth; in ParamValidationExt() local 506 && (kiPicWidth == 0) && (kiPicHeight == 0) in ParamValidationExt() 508 kiPicWidth = pSpatialLayer->iVideoWidth = pCodingParam->iPicWidth; in ParamValidationExt() 515 …if ((kiPicWidth <= 0) || (kiPicHeight <= 0) || (kiPicWidth * kiPicHeight > (MAX_MBS_PER_FRAME << 8… in ParamValidationExt() 518 (MAX_MBS_PER_FRAME << 8), kiPicWidth, kiPicHeight); in ParamValidationExt() 521 if ((kiPicWidth & 0x0F) != 0 || (kiPicHeight & 0x0F) != 0) { in ParamValidationExt() 524 i, kiPicWidth, kiPicHeight); in ParamValidationExt() 541 if (kiPicWidth <= 16 && kiPicHeight <= 16) { in ParamValidationExt() [all …]
|
D | wels_preprocess.cpp | 175 const int32_t kiPicWidth = pParam->sSpatialLayers[iDlayerIndex].iVideoWidth; in AllocSpatialPictures() local 183 SPicture* pPic = AllocPicture (pMa, kiPicWidth, kiPicHeight, false, 0); in AllocSpatialPictures()
|
/third_party/openh264/codec/decoder/core/inc/ |
D | decoder_context.h | 143 typedef void (*PExpandPictureFunc) (uint8_t* pDst, const int32_t kiStride, const int32_t kiPicWidth,
|