Lines Matching refs:displayWidth
2037 int32_t displayWidth, displayHeight; in updateVideoSize() local
2048 displayWidth = cropRight - cropLeft + 1; in updateVideoSize()
2054 displayWidth, in updateVideoSize()
2058 CHECK(inputFormat->findInt32("width", &displayWidth)); in updateVideoSize()
2061 ALOGV("Video input format %d x %d", displayWidth, displayHeight); in updateVideoSize()
2071 displayWidth = (displayWidth * sarWidth) / sarHeight; in updateVideoSize()
2073 ALOGV("display dimensions %d x %d", displayWidth, displayHeight); in updateVideoSize()
2079 && displayWidth > 0 && displayHeight > 0) { in updateVideoSize()
2080 if (displayHeight * (int64_t)width / height > (int64_t)displayWidth) { in updateVideoSize()
2081 displayHeight = (int32_t)(displayWidth * (int64_t)height / width); in updateVideoSize()
2083 displayWidth = (int32_t)(displayHeight * (int64_t)width / height); in updateVideoSize()
2086 displayWidth, displayHeight); in updateVideoSize()
2096 int32_t tmp = displayWidth; in updateVideoSize()
2097 displayWidth = displayHeight; in updateVideoSize()
2103 displayWidth, in updateVideoSize()