Lines Matching refs:block_width
109 int block_width, block_height; member
149 s->block_width : in init_blocks()
150 s->image_width - col * s->block_width; in init_blocks()
213 s->block_width = (s->image_width / 12) & ~15; in flashsv2_encode_init()
216 if(!s->block_width) in flashsv2_encode_init()
217 s->block_width = 1; in flashsv2_encode_init()
222 s->cols = (s->image_width + s->block_width - 1) / s->block_width; in flashsv2_encode_init()
292 put_bits(&pb, 4, (s->block_width >> 4) - 1); in write_header()
617 possl = stride * sl + col * s->block_width * 3; in mark_all_blocks()
618 pos = s->image_width * rsl * 3 + col * s->block_width * 3; in mark_all_blocks()
650 … data = s->current_frame + s->image_width * 3 * s->block_height * row + s->block_width * col * 3; in encode_all_blocks()
801 int block_width = optimum_block_width (s); in reconfigure_at_keyframe() local
805 s->cols = (s->image_width + block_width - 1) / block_width; in reconfigure_at_keyframe()
807 if (block_width != s->block_width || block_height != s->block_height) { in reconfigure_at_keyframe()
808 s->block_width = block_width; in reconfigure_at_keyframe()
822 av_fast_malloc(&s->blockbuffer, &s->blockbuffer_size, block_width * block_height * 6); in reconfigure_at_keyframe()