Home
last modified time | relevance | path

Searched refs:Mheight (Results 1 – 2 of 2) sorted by relevance

/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
DBlend.cpp217 Mheight = (unsigned short) (fullRect.bottom - fullRect.top + 1); in runBlend()
227 yBottomMost = min(Mheight - 1, min(yBottomCorners[0], yBottomCorners[1]) - fullRect.top - 1); in runBlend()
239 Mheight = (unsigned short) ((Mheight + 3) & ~3); // Round up. in runBlend()
246 "(%d, %d) vs (%d, %d)", width, height, Mwidth, Mheight); in runBlend()
250 LOGI("Allocate mosaic image for blending - size: %d x %d", Mwidth, Mheight); in runBlend()
251 YUVinfo *imgMos = YUVinfo::allocateImage(Mwidth, Mheight); in runBlend()
254 LOGE("RunBlend: aborting - couldn't alloc %d x %d mosaic image", Mwidth, Mheight); in runBlend()
304 mosaicHeight = Mheight; in runBlend()
311 if (Mwidth < width || Mheight < height) { in MosaicSizeCheck()
315 if ((Mwidth * Mheight) > (width * height * sizeMultiplier)) { in MosaicSizeCheck()
[all …]
DBlend.h98 unsigned short Mwidth, Mheight; variable