Lines Matching refs:image_height
61 int image_width, image_height;
116 s->image_height = avctx->height;
118 s->encbuffer = av_mallocz(s->image_width * s->image_height * 3);
144 put_bits(&pb, 12, s->image_height);
150 v_blocks = s->image_height / block_height;
151 v_part = s->image_height % block_height;
169 s->image_height - (y_pos + cur_blk_height + 1),
214 s->previous_frame = av_mallocz(FFABS(p->linesize[0]) * s->image_height);
223 pfptr = s->previous_frame - (s->image_height - 1) * p->linesize[0];
233 if ((res = ff_alloc_packet(avctx, pkt, s->image_width * s->image_height * 3)) < 0)
241 memcpy(s->previous_frame, p->data[0], s->image_height * p->linesize[0]);
244 p->data[0] + p->linesize[0] * (s->image_height - 1),
245 s->image_height * FFABS(p->linesize[0]));