Home
last modified time | relevance | path

Searched refs:WELS_ALIGN (Results 1 – 10 of 10) sorted by relevance

/third_party/openh264/codec/encoder/core/src/
Dpicture_handle.cpp66 …iPicWidth = WELS_ALIGN (kiWidth, MB_WIDTH_LUMA) + (PADDING_LENGTH << 1); // with width of… in AllocPicture()
67 …iPicHeight = WELS_ALIGN (kiHeight, MB_HEIGHT_LUMA) + (PADDING_LENGTH << 1); // with … in AllocPicture()
70 iPicWidth = WELS_ALIGN (iPicWidth, in AllocPicture()
72 iPicChromaWidth = WELS_ALIGN (iPicChromaWidth, 16); in AllocPicture()
Dencoder_ext.cpp1041 …int32_t iPicWidth = WELS_ALIGN (kiWidth, MB_WIDTH_LUMA) + (PADDING_LENGTH << 1); // wit… in InitDqLayers()
1044 iPicWidth = WELS_ALIGN (iPicWidth, in InitDqLayers()
1046 iPicChromaWidth = WELS_ALIGN (iPicChromaWidth, 16); in InitDqLayers()
1288 const int32_t kiWidthPad = WELS_ALIGN (fDlp->iVideoWidth, 16) + (PADDING_LENGTH << 1); in AllocStrideTables()
1289 iLineSizeY[iSpatialIdx][kbBaseTemporalFlag] = WELS_ALIGN (kiWidthPad, 32); in AllocStrideTables()
1290 iLineSizeUV[iSpatialIdx][kbBaseTemporalFlag] = WELS_ALIGN ((kiWidthPad >> 1), 16); in AllocStrideTables()
1399 iMaxMbWidth = WELS_ALIGN (iMaxMbWidth, 4); // 4 loops for int16_t required introduced as below in AllocStrideTables()
1593 iLayerBsSize = WELS_ALIGN (iLayerBsSize, 4); // 4 bytes alinged in RequestMemorySvc()
Dsvc_motion_estimate.cpp445 const int32_t kiRowNum = WELS_ALIGN ((kiDiff - kiEdgeBlocks + 1), kiEdgeBlocks); in VerticalFullSearchUsingSSE41()
/third_party/openh264/codec/processing/src/downsample/
Ddownsample.cpp231 iDstStrideY = WELS_ALIGN (iHalfSrcWidth, 32); in Process()
232 iDstStrideU = WELS_ALIGN (iHalfSrcWidth >> 1, 32); in Process()
233 iDstStrideV = WELS_ALIGN (iHalfSrcWidth >> 1, 32); in Process()
284 pSrc, iSrcStride, WELS_ALIGN (iSrcWidth & ~1, 32), iSrcHeight); in DownsampleHalfAverage()
289 pSrc, iSrcStride, WELS_ALIGN (iSrcWidth & ~1, 16), iSrcHeight); in DownsampleHalfAverage()
/third_party/openh264/test/common/
DExpandPicture.cpp223 iPicWidth = WELS_ALIGN (iPicWidth, 32); in TEST()
225 iStride[0] = WELS_ALIGN (iPicWidth, in TEST()
227 int32_t iPicHeightExt = WELS_ALIGN (iPicHeight, in TEST()
/third_party/openh264/codec/decoder/core/src/
Dpic_queue.cpp78 iPicWidth = WELS_ALIGN (kiPicWidth + (PADDING_LENGTH << 1), PICTURE_RESOLUTION_ALIGNMENT); in AllocPicture()
79 iPicHeight = WELS_ALIGN (kiPicHeight + (PADDING_LENGTH << 1), PICTURE_RESOLUTION_ALIGNMENT); in AllocPicture()
/third_party/openh264/codec/common/inc/
Dmacros.h84 #ifndef WELS_ALIGN
85 #define WELS_ALIGN(x, n) (((x)+(n)-1)&~((n)-1)) macro
/third_party/openh264/codec/encoder/core/inc/
Dparam_svc.h479 pDlayer->iVideoWidth = WELS_ALIGN (pDlayerInternal->iActualWidth, MB_WIDTH_LUMA); in SetActualPicResolution()
480 pDlayer->iVideoHeight = WELS_ALIGN (pDlayerInternal->iActualHeight, MB_HEIGHT_LUMA); in SetActualPicResolution()
/third_party/openh264/test/encoder/
DEncUT_SliceBufferReallocate.cpp265 int32_t iVclLayersBsSizeCount = WELS_ALIGN (iLayerBsSize, 4); in InitFrameBsBuffer()
/third_party/openh264/codec/common/src/
Dmc.cpp869 ENFORCE_STACK_ALIGN_2D (int16_t, pTmp, 17 + 5, WELS_ALIGN(17, 16 / sizeof (int16_t)), 16) in McHorVer22Width5Or9Or17_ssse3()
1044 ENFORCE_STACK_ALIGN_2D (int16_t, pTmp, 9 + 5, WELS_ALIGN(5, 16 / sizeof (int16_t)), 16) in McHorVer22Width5Or9Or17_avx2()
1052 ENFORCE_STACK_ALIGN_2D (int16_t, pTmp, 17 + 5, WELS_ALIGN(17, 32 / sizeof (int16_t)), 32) in McHorVer22Width5Or9Or17_avx2()