Lines Matching defs:width
69 uint32_t width;
79 int16_t width; ///< cell width in 4x4 blocks
97 int16_t width, height;
157 ctx->width = ctx->height = 0;
182 ctx->width = luma_width ;
202 ctx->planes[p].width = !p ? luma_width : chroma_width;
250 ((cell->xpos + cell->width) << 2) + mv_x > plane->width) {
261 for (w = cell->width; w > 0;) {
442 blk_row_offset = (row_offset << (2 + v_zoom)) - (cell->width << 2);
445 if (cell->height & v_zoom || cell->width & h_zoom)
449 for (x = 0; x < cell->width; x += 1 + h_zoom) {
620 ((cell->xpos + cell->width) << 2) + mv_x > plane->width) {
656 for (x = 0; x < cell->width << 2; x++)
746 if (curr_cell.xpos + curr_cell.width > (plane->width >> 2) || \
749 curr_cell.xpos, curr_cell.ypos, curr_cell.width, curr_cell.height); \
774 if (curr_cell.width > strip_width) {
776 curr_cell.width = (curr_cell.width <= (strip_width << 1) ? 1 : 2) * strip_width;
778 SPLIT_CELL(ref_cell->width, curr_cell.width);
779 ref_cell->xpos += curr_cell.width;
780 ref_cell->width -= curr_cell.width;
781 if (ref_cell->width <= 0 || curr_cell.width <= 0)
885 curr_cell.width = plane->width >> 2;
904 uint16_t height, width;
941 width = bytestream2_get_le16(&gb);
942 if (av_image_check_size(width, height, 0, avctx))
945 if (width != ctx->width || height != ctx->height) {
950 if (width < 16 || width > 640 ||
952 width & 3 || height & 3) {
954 "Invalid picture dimensions: %d x %d!\n", width, height);
958 if ((res = allocate_frame_buffers(ctx, avctx, width, height)) < 0)
960 if ((res = ff_set_dimensions(avctx, width, height)) < 0)
1037 for (x = 0; x < plane->width >> 2; x++) {
1043 for (x <<= 2; x < plane->width; x++)
1046 src += pitch - plane->width;
1047 dst += dst_pitch - plane->width;
1064 return allocate_frame_buffers(ctx, avctx, avctx->width, avctx->height);