Home
last modified time | relevance | path

Searched refs:CALC_BI_STRIDE (Results 1 – 4 of 4) sorted by relevance

/third_party/openh264/codec/processing/src/denoise/
Ddenoise.cpp38 #define CALC_BI_STRIDE(iWidth, iBitcount) ((((iWidth) * (iBitcount) + 31) & ~31) >> 3) macro
/third_party/openh264/codec/encoder/core/src/
Dencoder.cpp103 pSrcPic->iStride[0] = CALC_BI_STRIDE (kiWidth, 16); in InitPic()
112 pSrcPic->iStride[0] = CALC_BI_STRIDE (kiWidth, 24); in InitPic()
/third_party/openh264/codec/common/inc/
Dmacros.h269 #define CALC_BI_STRIDE(width,bitcount) ((((width * bitcount) + 31) & ~31) >> 3) macro
/third_party/openh264/codec/encoder/plus/src/
DwelsEncoderExt.cpp1355 …fwrite (pSrcPic->pData[0], sizeof (uint8_t), (CALC_BI_STRIDE (m_iMaxPicWidth, 16)) * m_iMaxPicHei… in DumpSrcPicture()