Lines Matching defs:row_size
104 int row_size; /* decompressed row size */
358 last_row, s->row_size, s->bpp);
362 deloco_rgb16((uint16_t *)(ptr - dst_stride), s->row_size / 2,
365 deloco_rgb8(ptr - dst_stride, s->row_size,
374 deloco_rgb16((uint16_t *)ptr, s->row_size / 2,
377 deloco_rgb8(ptr, s->row_size,
403 memset(s->last_row, 0, s->row_size);
658 s->row_size = (s->cur_w * s->bits_per_pixel + 7) >> 3;
758 s->crow_size = s->row_size + 1;
766 ff_dlog(avctx, "row_size=%d crow_size =%d\n",
767 s->row_size, s->crow_size);
773 av_fast_padded_mallocz(&s->last_row, &s->last_row_size, s->row_size);
778 av_fast_padded_malloc(&s->tmp_row, &s->tmp_row_size, s->row_size);
783 av_fast_padded_malloc(&s->buffer, &s->buffer_size, s->row_size + 16);