Lines Matching defs:height
226 * width, height and Run Length Encoded (RLE) bitmap data.
239 unsigned int rle_bitmap_len, width, height;
279 /* Decode rle bitmap length, stored size includes width/height data */
291 height = bytestream_get_be16(&buf);
294 if (avctx->width < width || avctx->height < height || !width || !height) {
295 av_log(avctx, AV_LOG_ERROR, "Bitmap dimensions (%dx%d) invalid.\n", width, height);
300 object->h = height;
361 /* Default to BT.709 colorspace. In case of <= 576 height use BT.601 */
362 if (avctx->height <= 0 || avctx->height > 576) {
382 * width, video height, x & y subtitle position.
473 if (object->x > avctx->width || object->y > avctx->height) {
474 av_log(avctx, AV_LOG_ERROR, "Subtitle out of video bounds. x = %d, y = %d, video width = %d, video height = %d.\n",
476 avctx->width, avctx->height);
548 // Leaves rect empty with 0 width and height.