Lines Matching defs:height
188 fs->slice_y = sy * (int64_t)f->height / f->num_v_slices;
190 fs->slice_height = (sy + sh) * (int64_t)f->height / f->num_v_slices - fs->slice_y;
193 (unsigned)fs->slice_height <= f->height);
195 && (unsigned)fs->slice_y + (uint64_t)fs->slice_height <= f->height);
231 if (av_image_check_sar(f->width, f->height,
259 int width, height, x, y, ret;
320 height = fs->slice_height;
333 av_assert1(width && height);
336 const int chroma_height = AV_CEIL_RSHIFT(height, f->chroma_v_shift);
339 decode_plane(fs, p->data[0] + ps*x + y*p->linesize[0], width, height, p->linesize[0], 0, 1);
346 decode_plane(fs, p->data[3] + ps*x + y*p->linesize[3], width, height, p->linesize[3], (f->version >= 4 && !f->chroma_planes) ? 1 : 2, 1);
348 decode_plane(fs, p->data[0] + ps*x + y*p->linesize[0] , width, height, p->linesize[0], 0, 2);
349 decode_plane(fs, p->data[0] + ps*x + y*p->linesize[0] + 1, width, height, p->linesize[0], 1, 2);
355 decode_rgb_frame32(fs, planes, width, height, p->linesize);
361 decode_rgb_frame(fs, planes, width, height, p->linesize);
474 f->num_v_slices > (unsigned)f->height || !f->num_v_slices
798 fs->slice_y = sy * (int64_t)f->height / f->num_v_slices;
800 fs->slice_height = (sy + sh) * (int64_t)f->height / f->num_v_slices - fs->slice_y;
803 (unsigned)fs->slice_height <= f->height);
805 && (unsigned)fs->slice_y + (uint64_t)fs->slice_height <= f->height);
902 if (buf_size < avctx->width * avctx->height / (128*8))
912 if (buf_size < (avctx->height + i + 6) / 8 * s)