Home
last modified time | relevance | path

Searched refs:plane_height (Results 1 – 21 of 21) sorted by relevance

/external/libgav1/libgav1/src/post_filter/
Dloop_restoration.cc22 const int plane_height, const int plane_width, const int unit_y, in ApplyLoopRestorationForOneRow() argument
68 (unit_y + current_process_unit_height >= plane_height); in ApplyLoopRestorationForOneRow()
111 const int plane_height = SubsampledValue(height_, subsampling_y_[plane]); in ApplyLoopRestorationForOneSuperBlockRow() local
126 if (y >= plane_height) break; in ApplyLoopRestorationForOneSuperBlockRow()
130 current_process_unit_height = std::min(expected_height, plane_height - y); in ApplyLoopRestorationForOneSuperBlockRow()
134 static_cast<Plane>(plane), plane_height, plane_width, y, unit_row, in ApplyLoopRestorationForOneSuperBlockRow()
Dpost_filter.cc287 const int plane_height = SubsampledValue(height_, subsampling_y_[plane]); in ExtendBordersForReferenceFrame() local
301 frame_buffer_.data(plane), plane_width, plane_height, in ExtendBordersForReferenceFrame()
318 const int plane_height = in CopyDeblockedPixels() local
323 if (absolute_row + i >= plane_height) { in CopyDeblockedPixels()
350 const int plane_height = SubsampledValue(height_, subsampling_y_[plane]); in CopyBordersForOneSuperBlockRow() local
353 if (row >= plane_height) break; in CopyBordersForOneSuperBlockRow()
358 plane_height - row); in CopyBordersForOneSuperBlockRow()
364 const bool copy_bottom = row + num_rows == plane_height; in CopyBordersForOneSuperBlockRow()
402 const int plane_height = SubsampledValue(height_, subsampling_y_[plane]); in SetupLoopRestorationBorder() local
425 if (absolute_row + i < plane_height - 1) src += src_stride; in SetupLoopRestorationBorder()
[all …]
Dcdef.cc100 const int plane_height = SubsampledValue(MultiplyBy4(frame_header_.rows4x4), in SetupCdefBorder() local
106 if (absolute_row >= plane_height) break; in SetupCdefBorder()
130 const int plane_height = SubsampledValue(height_, subsampling_y); in PrepareCdefBlock() local
142 const bool is_frame_bottom = start_y + block_height >= plane_height; in PrepareCdefBlock()
/external/libvpx/libvpx/vp8/decoder/
Ddecodeframe.c309 int plane_height; in yv12_extend_frame_bottom_c() local
316 plane_height = ybf->y_height; in yv12_extend_frame_bottom_c()
319 src_ptr2 = src_ptr1 + (plane_height * plane_stride) - plane_stride; in yv12_extend_frame_bottom_c()
331 plane_height = ybf->uv_height; in yv12_extend_frame_bottom_c()
335 src_ptr2 = src_ptr1 + (plane_height * plane_stride) - plane_stride; in yv12_extend_frame_bottom_c()
348 src_ptr2 = src_ptr1 + (plane_height * plane_stride) - plane_stride; in yv12_extend_frame_bottom_c()
367 int plane_height; in yv12_extend_frame_left_right_c() local
375 plane_height = 16; in yv12_extend_frame_left_right_c()
384 for (i = 0; i < plane_height; ++i) { in yv12_extend_frame_left_right_c()
397 plane_height = 8; in yv12_extend_frame_left_right_c()
[all …]
/external/libaom/libaom/av1/decoder/
Ddetokenize.c31 int plane_block_height = param->plane_height; in decode_color_map_tokens()
76 &params.plane_height, &params.rows, &params.cols); in av1_decode_palette_tokens()
Ddecodeframe.c905 &params.plane_height, NULL, NULL); in set_color_index_map_offset()
906 xd->color_index_map_offset[plane] += params.plane_width * params.plane_height; in set_color_index_map_offset()
/external/minigbm/
Di915.c342 uint32_t plane_height = drv_height_from_format(format, height, plane); in i915_bo_from_format() local
347 ret = i915_align_dimensions(bo, bo->meta.tiling, &stride, &plane_height); in i915_bo_from_format()
357 plane_height = ALIGN(plane_height, 64); in i915_bo_from_format()
361 bo->meta.sizes[plane] = stride * plane_height; in i915_bo_from_format()
/external/libgav1/libgav1/src/
Dfilm_grain.cc492 const int plane_height = (height + subsampling_y) >> subsampling_y; in ConstructNoiseImage() local
502 } while (++y < std::min(stripe_height, plane_height)); in ConstructNoiseImage()
506 for (; y < (plane_height & ~stripe_mask); ++luma_num, y += stripe_height) { in ConstructNoiseImage()
516 const int remaining_height = plane_height - y; in ConstructNoiseImage()
Dloop_restoration_info.cc75 const int plane_height = in Reset() local
81 1, RightShiftWithRounding(plane_height, in Reset()
Dpost_filter.h451 Plane plane, int plane_height,
/external/igt-gpu-tools/lib/
Digt_fb.c607 fb->plane_height[i] = fb_plane_height(fb, i); in igt_init_fb()
656 fb->plane_height[plane]; in calc_plane_size()
681 if (tile_height > fb->plane_height[plane]) in calc_plane_size()
685 ALIGN(fb->plane_height[plane], tile_height); in calc_plane_size()
811 fb->strides[0] * fb->plane_height[0]); in clear_yuv_buffer()
814 fb->strides[1] * fb->plane_height[1]); in clear_yuv_buffer()
818 fb->strides[0] * fb->plane_height[0] / sizeof(wchar_t)); in clear_yuv_buffer()
824 fb->strides[0] * fb->plane_height[0] / sizeof(wchar_t)); in clear_yuv_buffer()
830 fb->strides[0] * fb->plane_height[0] / sizeof(wchar_t)); in clear_yuv_buffer()
838 fb->strides[1] * fb->plane_height[1] / sizeof(wchar_t)); in clear_yuv_buffer()
[all …]
Digt_vc4.c387 for (i = 0; i < dst->plane_height[plane]; i++) { in vc4_fb_convert_plane_to_sand_tiled()
443 for (i = 0; i < dst->plane_height[plane]; i++) { in vc4_fb_convert_plane_from_sand_tiled()
Digt_fb.h99 unsigned int plane_height[4]; member
/external/libgav1/libgav1/src/dsp/
Dfilm_grain.cc443 const int plane_height = (height + subsampling_y) >> subsampling_y; in ConstructNoiseImageOverlap_C() local
451 for (; y < (plane_height & ~stripe_mask); ++luma_num, y += stripe_height) { in ConstructNoiseImageOverlap_C()
465 const int remaining_height = plane_height - y; in ConstructNoiseImageOverlap_C()
487 for (; y < plane_height; ++luma_num, y += stripe_height) { in ConstructNoiseImageOverlap_C()
/external/virglrenderer/src/
Dvrend_winsys_gbm.c376 uint32_t plane_height = height / layout->vertical_subsampling[plane]; in virgl_gbm_transfer() local
407 guest_plane_offset += plane_height * guest_plane_stride; in virgl_gbm_transfer()
/external/libgav1/libgav1/src/dsp/arm/
Dfilm_grain_neon.cc1020 const int plane_height = (height + subsampling_y) >> subsampling_y; in ConstructNoiseImageOverlap8bpp_NEON() local
1030 for (; y < (plane_height & ~stripe_mask); ++luma_num, y += stripe_height) { in ConstructNoiseImageOverlap8bpp_NEON()
1045 const int remaining_height = plane_height - y; in ConstructNoiseImageOverlap8bpp_NEON()
1064 for (; y < plane_height; ++luma_num, y += stripe_height) { in ConstructNoiseImageOverlap8bpp_NEON()
/external/igt-gpu-tools/tests/
Dtestdisplay.c98 int plane_width, plane_height; variable
665 &plane_height, &crtc_x, &crtc_y, in opt_handler()
/external/libaom/libaom/av1/common/
Drestoration.c1137 const int plane_height = frame->crop_heights[is_uv]; in av1_loop_restoration_filter_frame_init() local
1140 av1_extend_frame(frame->buffers[plane], plane_width, plane_height, in av1_loop_restoration_filter_frame_init()
1508 const int plane_height = ROUND_POWER_OF_TWO(cm->height, ss_y); in save_tile_row_boundary_lines() local
1525 const int use_deblock_below = (y1 < plane_height); in save_tile_row_boundary_lines()
Dblockd.h1255 int plane_height; member
/external/libaom/libaom/av1/encoder/
Dpickrst.c132 int plane_height; member
183 rsc->plane_height = src->crop_heights[is_uv]; in init_rsc()
1738 av1_extend_frame(rsc.dgd_buffer, rsc.plane_width, rsc.plane_height, in av1_pick_filter_restoration()
/external/libgav1/libgav1/src/tile/
Dtile.cc544 const int plane_height = local
547 std::min(frame_header_.rows4x4, DivideBy4(plane_height + 3)