Lines Matching refs:block_height
111 int block_width, block_height;
158 s->block_height :
159 s->image_height - row * s->block_height;
182 static int update_block_dimensions(FlashSV2Context *s, int block_width, int block_height)
185 s->block_height = block_height;
186 s->rows = (s->image_height + s->block_height - 1) / s->block_height;
200 av_fast_malloc(&s->blockbuffer, &s->blockbuffer_size, block_width * block_height * 6);
307 put_bits(&pb, 4, (s->block_height >> 4) - 1);
635 b = s->frame_blocks + col + rsl / s->block_height * s->cols;
639 s->key_frame + pos, rsl % s->block_height, keyframe);
669 data = s->current_frame + s->image_width * 3 * s->block_height * row + s->block_width * col * 3;
765 double save = (1-pow(s->diff_lines/s->diff_blocks/s->block_height, 0.5)) * s->comp_size/s->tot_blocks;
777 double save = (1-pow(s->diff_lines/s->diff_blocks/s->block_height, 0.5)) * s->comp_size/s->tot_blocks;
822 int block_height = optimum_block_height(s);
824 if (block_width != s->block_width || block_height != s->block_height) {
825 res = update_block_dimensions(s, block_width, block_height);