Lines Matching defs:width
133 int left, top, width, height, bits_per_pixel, code_size, flags, pw;
145 width = bytestream2_get_le16u(&s->gb);
152 ff_dlog(s->avctx, "image x=%d y=%d w=%d h=%d\n", left, top, width, height);
183 if (!width || width > s->screen_width) {
184 av_log(s->avctx, AV_LOG_WARNING, "Invalid image width: %d, truncating.\n", width);
185 width = s->screen_width;
199 if (left + width > s->screen_width) {
200 /* width must be kept around to avoid lzw vs line desync */
203 left + width - s->screen_width);
205 pw = width;
262 int count = ff_lzw_decode(s->lzw, s->idx_line, width);
263 if (count != width) {