Lines Matching defs:width
82 if (av_image_check_size(avctx->width, avctx->height, 0, avctx) < 0) {
86 s->logical_width=avctx->width;
90 if (avctx->width % 4) {
94 s->logical_width = avctx->width / 4;
138 int width=s->logical_width;
159 const uint8_t *this_line = p->data[0] + line * p->linesize[0] + width * s->pixel_size;
166 + width * s->pixel_size;
168 s->length_table[width] = 0;
173 lowest_bulk_cost_index = width;
175 sec_lowest_bulk_cost_index = width;
179 for (i = width - 1; i >= 0; i--) {
188 if (FFMIN(width, i + MAX_RLE_BULK) < lowest_bulk_cost_index) {
193 sec_lowest_bulk_cost_index = width;
234 if (i < width - 1 && !memcmp(this_line, this_line + s->pixel_size, s->pixel_size))
287 while (i < width) {