Lines Matching defs:left
534 int opcode, color, run_len, left = out_size;
536 while (left > 0) {
539 if (run_len > left || bytestream2_get_bytes_left(&ctx->gb) <= 0)
552 left -= run_len;
559 int left, int width, int height)
561 uint8_t *dst = ((uint8_t *)ctx->frm0) + left + top * ctx->pitch;
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;
651 dst = ((uint8_t*)ctx->frm0) + left + top * stride;
652 prev = ((uint8_t*)ctx->frm2) + left + top * stride;
861 int left, int width, int height)
866 uint8_t *dst = (uint8_t *)ctx->frm0 + left + top * stride;
879 if (decoded_size > ctx->height * stride - left - top * stride) {
880 decoded_size = ctx->height * stride - left - top * stride;
954 uint16_t left = bytestream2_get_le16u(&ctx->gb);
964 if (ctx->width < left + w || ctx->height < top + h) {
965 int ret = ff_set_dimensions(ctx->avctx, FFMAX(left + w, ctx->width),
969 init_sizes(ctx, FFMAX(left + w, ctx->width),
981 return old_codec1(ctx, top, left, w, h);
983 return old_codec37(ctx, top, left, w, h);
985 return old_codec47(ctx, top, left, w, h);