Lines Matching defs:height
273 int width, height;
301 uint32_t width, height;
325 * @param edge_size box width/height.
384 * @param side_length glyph width/height.
438 static void init_sizes(SANMVideoContext *ctx, int width, int height)
441 ctx->height = height;
442 ctx->npixels = width * height;
445 ctx->aligned_height = FFALIGN(height, 8);
503 init_sizes(ctx, avctx->width, avctx->height);
559 int left, int width, int height)
564 for (i = 0; i < height; i++) {
606 int height, int stride, int x, int y)
613 if ((pos + i) < 0 || (pos + i) >= height * stride)
625 int left, int width, int height)
641 if (decoded_size > ctx->height * stride - left - top * stride) {
642 decoded_size = ctx->height * stride - left - top * stride;
661 for (i = 0; i < height; i++) {
665 memset(ctx->frm1, 0, ctx->height * stride);
666 memset(ctx->frm2, 0, ctx->height * stride);
677 for (j = 0; j < height; j += 4) {
720 ctx->height, stride, i + mx, j + my);
728 for (j = 0; j < height; j += 4) {
753 ctx->height, stride, i + mx, j + my);
861 int left, int width, int height)
879 if (decoded_size > ctx->height * stride - left - top * stride) {
880 decoded_size = ctx->height * stride - left - top * stride;
888 memset(prev1, 0, ctx->height * stride);
889 memset(prev2, 0, ctx->height * stride);
894 if (bytestream2_get_bytes_left(&ctx->gb) < width * height)
896 for (j = 0; j < height; j++) {
902 if (bytestream2_get_bytes_left(&ctx->gb) < ((width + 1) >> 1) * ((height + 1) >> 1))
904 for (j = 0; j < height; j += 2) {
916 for (j = 0; j < height; j += 8) {
928 memcpy(ctx->frm0, ctx->frm2, ctx->pitch * ctx->height);
931 memcpy(ctx->frm0, ctx->frm1, ctx->pitch * ctx->height);
964 if (ctx->width < left + w || ctx->height < top + h) {
966 FFMAX(top + h, ctx->height));
970 FFMAX(top + h, ctx->height));
997 if (bytestream2_get_bytes_left(&ctx->gb) < ctx->width * ctx->height * 2) {
1001 for (y = 0; y < ctx->height; y++) {
1332 hdr->height = bytestream2_get_le32u(&ctx->gb);
1334 if (hdr->width != ctx->width || hdr->height != ctx->height) {
1372 int ret, height = ctx->height;
1381 while (height--) {