Lines Matching defs:width
376 (fs->slice_x + 1) * f->num_h_slices / f->width, 0);
380 (fs->slice_width + 1) * f->num_h_slices / f->width - 1,
530 if (avctx->slices == 0 && avctx->level < 0 && avctx->width * avctx->height > 720*576)
851 int max_h_slices = AV_CEIL_RSHIFT(avctx->width , s->chroma_h_shift);
853 s->num_v_slices = (avctx->width > 352 || avctx->height > 288 || !avctx->slices) ? 2 : 1;
859 int maxw = (avctx->width + s->num_h_slices - 1) / s->num_h_slices;
911 put_symbol(c, state, (fs->slice_x +1)*f->num_h_slices / f->width , 0);
913 put_symbol(c, state, (fs->slice_width +1)*f->num_h_slices / f->width -1, 0);
1023 int width = fs->slice_width;
1038 choose_rct_params(fs, planes, p->linesize, width, height);
1058 const int chroma_width = AV_CEIL_RSHIFT(width, f->chroma_h_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;