Home | History | Annotate | Download | only in nuplayer2

Lines Matching defs:displayHeight

2078     int32_t displayWidth, displayHeight;
2090 displayHeight = cropBottom - cropTop + 1;
2096 displayHeight,
2100 CHECK(inputFormat->findInt32("height", &displayHeight));
2102 ALOGV("Video input format %d x %d", displayWidth, displayHeight);
2114 ALOGV("display dimensions %d x %d", displayWidth, displayHeight);
2120 && displayWidth > 0 && displayHeight > 0) {
2121 if (displayHeight * (int64_t)width / height > (int64_t)displayWidth) {
2122 displayHeight = (int32_t)(displayWidth * (int64_t)height / width);
2124 displayWidth = (int32_t)(displayHeight * (int64_t)width / height);
2127 displayWidth, displayHeight);
2138 displayWidth = displayHeight;
2139 displayHeight = tmp;
2146 displayHeight);