Lines Matching refs:height
182 int32_t height = 0; in bppPoint() local
187 width = 1080; height = 1920; in bppPoint()
189 width = 720; height = 1280; in bppPoint()
191 width = 540; height = 960; in bppPoint()
193 width = 480; height = 854; in bppPoint()
213 height = strtol(p, &q, 0); in bppPoint()
215 height = -1; in bppPoint()
217 if (width <= 0 || height <= 0 || width > DIMENSION_LIMIT || height > DIMENSION_LIMIT) { in bppPoint()
237 point->pixels = width * height; in bppPoint()
239 point->height = height; in bppPoint()
272 double CodecProperties::getBpp(int32_t width, int32_t height) { in getBpp() argument
275 int32_t pixels = width * height; in getBpp()
284 width, height, point->bpp, point->width, point->height); in getBpp()
296 int32_t height = 0; in qpMaxPoint() local
301 width = 1080; height = 1920; in qpMaxPoint()
303 width = 720; height = 1280; in qpMaxPoint()
305 width = 540; height = 960; in qpMaxPoint()
307 width = 480; height = 854; in qpMaxPoint()
327 height = strtol(p, &q, 0); in qpMaxPoint()
329 height = -1; in qpMaxPoint()
331 if (width <= 0 || height <= 0 || width > DIMENSION_LIMIT || height > DIMENSION_LIMIT) { in qpMaxPoint()
355 point->pixels = width * height; in qpMaxPoint()
357 point->height = height; in qpMaxPoint()
390 int CodecProperties::targetQpMax(int32_t width, int32_t height) { in targetQpMax() argument
393 int32_t pixels = width * height; in targetQpMax()
402 width, height, point->qpMax, point->width, point->height); in targetQpMax()