Lines Matching defs:height
378 (fs->slice_y + 1) * f->num_v_slices / f->height, 0);
383 (fs->slice_height + 1) * f->num_v_slices / f->height - 1,
530 if (avctx->slices == 0 && avctx->level < 0 && avctx->width * avctx->height > 720*576)
852 int max_v_slices = AV_CEIL_RSHIFT(avctx->height, s->chroma_v_shift);
853 s->num_v_slices = (avctx->width > 352 || avctx->height > 288 || !avctx->slices) ? 2 : 1;
860 int maxh = (avctx->height + s->num_v_slices - 1) / s->num_v_slices;
912 put_symbol(c, state, (fs->slice_y +1)*f->num_v_slices / f->height , 0);
914 put_symbol(c, state, (fs->slice_height+1)*f->num_v_slices / f->height-1, 0);
1024 int height = fs->slice_height;
1038 choose_rct_params(fs, planes, p->linesize, width, height);
1059 const int chroma_height = AV_CEIL_RSHIFT(height, f->chroma_v_shift);
1063 ret = encode_plane(fs, p->data[0] + ps*x + y*p->linesize[0], width, height, p->linesize[0], 0, 1);
1070 ret |= encode_plane(fs, p->data[3] + ps*x + y*p->linesize[3], width, height, p->linesize[3], 2, 1);
1072 ret = encode_plane(fs, p->data[0] + ps*x + y*p->linesize[0], width, height, p->linesize[0], 0, 2);
1073 ret |= encode_plane(fs, p->data[0] + 1 + ps*x + y*p->linesize[0], width, height, p->linesize[0], 1, 2);
1075 ret = encode_rgb_frame32(fs, planes, width, height, p->linesize);
1077 ret = encode_rgb_frame(fs, planes, width, height, p->linesize);
1106 + avctx->width*avctx->height*37LL*4;
1155 maxsize = AV_INPUT_BUFFER_MIN_SIZE + avctx->width*avctx->height*3LL*4;