/external/libgav1/libgav1/src/post_filter/ |
D | post_filter.cc | 152 upscaled_width_(frame_header.upscaled_width), in PostFilter() 188 const int upscaled_width = local 192 (superres_width + upscaled_width / 2) / upscaled_width; 194 super_res_info_[plane].step * upscaled_width - superres_width; 196 ((-((upscaled_width - downscaled_width) << (kSuperResScaleBits - 1)) + 197 DivideBy2(upscaled_width)) / 198 upscaled_width + 201 super_res_info_[plane].upscaled_width = upscaled_width;
|
D | super_res.cc | 58 super_res_info_[plane].upscaled_width, in ApplySuperRes() 73 super_res_info_[plane].upscaled_width, in ApplySuperRes()
|
/external/libgav1/libgav1/src/dsp/ |
D | super_res.cc | 28 void ComputeSuperRes(const void* source, const int upscaled_width, in ComputeSuperRes() argument 35 assert(step <= kSuperResScaleMask || upscaled_width <= 4); in ComputeSuperRes() 40 for (int x = 0; x < upscaled_width; ++x) { in ComputeSuperRes()
|
D | dsp.h | 357 using SuperResRowFunc = void (*)(const void* source, const int upscaled_width,
|
/external/libgav1/libgav1/src/dsp/x86/ |
D | super_res_sse4.cc | 115 void ComputeSuperRes_SSE4_1(const void* source, const int upscaled_width, in ComputeSuperRes_SSE4_1() argument 124 for (; x < (upscaled_width & ~7); x += 8) { in ComputeSuperRes_SSE4_1() 129 for (; x < upscaled_width; x += 4) { in ComputeSuperRes_SSE4_1()
|
/external/libgav1/libgav1/src/dsp/arm/ |
D | super_res_neon.cc | 33 void ComputeSuperRes_NEON(const void* source, const int upscaled_width, in ComputeSuperRes_NEON() argument 42 for (int x = 0; x < upscaled_width; x += 8) { in ComputeSuperRes_NEON()
|
/external/libgav1/libgav1/src/ |
D | post_filter.h | 230 return frame_header.width != frame_header.upscaled_width && in DoSuperRes() 253 : Align(frame_header.upscaled_width, 64); in GetWindowBufferWidth() 314 frame_header_.upscaled_width == in DoBorderExtensionInLoop() 488 int upscaled_width; member
|
D | obu_parser.cc | 542 frame_header_.render_width = frame_header_.upscaled_width; in ParseFrameSizeAndRenderSize() 552 frame_header_.upscaled_width = frame_header_.width; in ParseSuperResParametersAndComputeImageSize() 563 (frame_header_.upscaled_width * kSuperResScaleNumerator + in ParseSuperResParametersAndComputeImageSize() 572 assert(frame_header_.upscaled_width >= frame_header_.width); in ParseSuperResParametersAndComputeImageSize() 573 if (frame_header_.upscaled_width > INT32_MAX / frame_header_.height) { in ParseSuperResParametersAndComputeImageSize() 587 if (2 * frame_header_.width < reference_frame->upscaled_width() || in ValidateInterFrameSize() 589 frame_header_.width > 16 * reference_frame->upscaled_width() || in ValidateInterFrameSize() 595 reference_frame->upscaled_width(), in ValidateInterFrameSize() 1084 frame_header_.width == frame_header_.upscaled_width; in ComputeSegmentLosslessAndQIndex() 1978 frame_header_.width == frame_header_.upscaled_width) { in ParseFrameParameters() [all …]
|
D | decoder_impl.cc | 1183 &frame_header.loop_restoration, frame_header.upscaled_width, in DecodeTiles() 1214 frame_header.upscaled_width, frame_header.height, in DecodeTiles() 1357 frame_header.upscaled_width, num_deblock_units, in DecodeTiles() 1534 displayable_frame->upscaled_width(), in ApplyFilmGrain() 1565 displayable_frame->upscaled_width(), in ApplyFilmGrain() 1587 displayable_frame->upscaled_width(), in ApplyFilmGrain()
|
D | buffer_pool.cc | 65 upscaled_width_ = frame_header.upscaled_width; in SetFrameDimensions()
|
D | buffer_pool.h | 119 int32_t upscaled_width() const { return upscaled_width_; } in upscaled_width() function
|
/external/libaom/libaom/av1/common/ |
D | restoration.c | 1427 int upscaled_width; in save_deblock_boundary_lines() local 1431 upscaled_width = (cm->superres_upscaled_width + ss_x) >> ss_x; in save_deblock_boundary_lines() 1432 line_bytes = upscaled_width << use_highbd; in save_deblock_boundary_lines() 1443 upscaled_width = frame->crop_widths[is_uv]; in save_deblock_boundary_lines() 1444 line_bytes = upscaled_width << use_highbd; in save_deblock_boundary_lines() 1454 extend_lines(bdry_rows, upscaled_width, RESTORATION_CTX_VERT, bdry_stride, in save_deblock_boundary_lines() 1478 const int upscaled_width = av1_superres_scaled(cm) in save_cdef_boundary_lines() local 1481 const int line_bytes = upscaled_width << use_highbd; in save_cdef_boundary_lines() 1489 extend_lines(bdry_rows, upscaled_width, RESTORATION_CTX_VERT, bdry_stride, in save_cdef_boundary_lines()
|
/external/libaom/libaom/av1/encoder/ |
D | level.c | 712 const int upscaled_width = cm->superres_upscaled_width; in av1_init_level_info() local 714 const int pic_size = upscaled_width * height; in av1_init_level_info() 718 if (upscaled_width > spec->max_h_size || height > spec->max_v_size || in av1_init_level_info() 1053 const int upscaled_width = cm->superres_upscaled_width; in av1_update_level_info() local 1059 const int luma_pic_size = upscaled_width * height; in av1_update_level_info()
|
D | encoder.c | 1153 const int upscaled_width = cm->superres_upscaled_width; in av1_get_compression_ratio() local 1155 const int luma_pic_size = upscaled_width * height; in av1_get_compression_ratio()
|
/external/libgav1/libgav1/src/utils/ |
D | types.h | 453 int32_t upscaled_width; member
|
/external/libgav1/libgav1/src/tile/ |
D | tile.cc | 1282 ? frame_header_.upscaled_width in ScaleMotionVector() 1283 : reference_frames_[reference_frame_index]->upscaled_width(); in ScaleMotionVector() 2490 frame_header_.width != frame_header_.upscaled_width; in ReadLoopRestorationCoefficients()
|
D | prediction.cc | 1083 : reference_frames_[reference_frame_index]->upscaled_width(); in BlockInterPrediction()
|
/external/libgav1/libgav1/src/tile/bitstream/ |
D | mode_info.cc | 1038 const int x_scale = ((reference_frames_[index]->upscaled_width() in IsScaled()
|