Home
last modified time | relevance | path

Searched refs:end_y (Results 1 – 18 of 18) sorted by relevance

/third_party/ffmpeg/libavfilter/
Dbbox.c32 int end_y; \
63 for (end_y = h - 1; end_y >= start_y; end_y--) { \
74 bbox->y2 = end_y; \
Dmotion_estimation.c382 int end_x, end_y; in ff_me_search_umh() local
407 end_y = FFMIN(mv[1] + 2, y_max); in ff_me_search_umh()
408 for (y = FFMAX(y_min, mv[1] - 2); y <= end_y; y++) in ff_me_search_umh()
Dvf_minterpolate.c995 int end_y = start_y + (1 << (n - 1)); in var_size_bmc() local
997 for (y = start_y; y < end_y; y++) { in var_size_bmc()
/third_party/ffmpeg/libavcodec/
Dvideodsp_template.c30 int start_y, start_x, end_y, end_x; in FUNC() local
57 end_y = FFMIN(block_h, h-src_y); in FUNC()
59 av_assert2(start_y < end_y && block_h); in FUNC()
73 for (; y < end_y; y++) { in FUNC()
Dsnowdec.c225 …(SnowContext *s, slice_buffer * sb, SubBand *b, IDWTELEM *src, int stride, int start_y, int end_y){ in dequantize_slice_buffered() argument
234 for(y=start_y; y<end_y; y++){ in dequantize_slice_buffered()
248 … * sb, SubBand *b, IDWTELEM *src, int stride, int inverse, int use_median, int start_y, int end_y){ in correlate_slice_buffered() argument
258 for(y=start_y; y<end_y; y++){ in correlate_slice_buffered()
547 int end_y; in decode_frame() local
564 int end_y; in decode_frame() local
569end_y = (((block_h * our_mb_end) >> (s->spatial_decomposition_count - level)) + s->spatial_decompo… in decode_frame()
572end_y = FFMAX(0, end_y - (block_h >> (1+s->spatial_decomposition_count - level))); in decode_frame()
575 end_y = FFMIN(b->height, end_y); in decode_frame()
577 if (start_y != end_y){ in decode_frame()
[all …]
Darbc.c57 int end_y = start_y + 4, end_x = start_x + 4; in fill_tile4() local
59 for (int j = start_y; j < end_y; j++) { in fill_tile4()
95 int end_y = start_y + tile_height, end_x = start_x + tile_width; in fill_tileX() local
100 for (int j = start_y; j < end_y; j += step_h) { in fill_tileX()
Dvp9recon.c228 int end_y = FFMIN(2 * (s->rows - row), h4); in intra_recon() local
235 for (n = 0, y = 0; y < end_y; y += step1d) { in intra_recon()
261 end_y >>= s->ss_v; in intra_recon()
266 for (n = 0, y = 0; y < end_y; y += uvstep1d) { in intra_recon()
606 int end_y = FFMIN(2 * (s->rows - row), h4); in inter_recon() local
612 for (n = 0, y = 0; y < end_y; y += step1d) { in inter_recon()
627 end_y >>= s->ss_v; in inter_recon()
631 for (n = 0, y = 0; y < end_y; y += uvstep1d) { in inter_recon()
Drasc.c249 int type, start_x, start_y, end_x, end_y, mov_x, mov_y; in decode_move() local
257 end_y = bytestream2_get_le16(&mc); in decode_move()
263 end_x >= avctx->width || end_y >= avctx->height || in decode_move()
268 if (start_x >= end_x || start_y >= end_y) in decode_move()
272 h = end_y - start_y; in decode_move()
Dvp9block.c974 int end_y = FFMIN(2 * (s->rows - row), h4); in decode_coeffs() local
1000 MERGE(l, end_y, step, rd); \ in decode_coeffs()
1005 for (n = 0, y = 0; y < end_y; y += step) { \ in decode_coeffs()
1054 SPLAT(l, end_y, step, end_y == h4); \ in decode_coeffs()
1080 for (n = 0, y = 0; y < end_y; y += step) { \ in decode_coeffs()
1102 end_y >>= s->ss_v; in decode_coeffs()
Dmpegvideo_enc.c1894 int end_y = s->thread_context[i]-> end_mb_y; in ff_mpv_encode_picture() local
1897 uint8_t *end = pkt->data + (size_t)(((int64_t) pkt->size) * end_y / h); in ff_mpv_encode_picture()
/third_party/ffmpeg/libavcodec/x86/
Dvideodsp_init.c35 x86_reg start_y, x86_reg end_y, x86_reg bh);
38 x86_reg start_y, x86_reg end_y, x86_reg bh,
160 x86_reg start_y, start_x, end_y, end_x, src_y_add = 0, p; in emulated_edge_mc() local
186 end_y = FFMIN(block_h, h-src_y); in emulated_edge_mc()
189 av_assert2(start_y < end_y && block_h > 0); in emulated_edge_mc()
196 start_y, end_y, block_h); in emulated_edge_mc()
199 start_y, end_y, block_h, w); in emulated_edge_mc()
Dvideodsp.asm53 ; |----| <- end_y
58 start_y, end_y, bh, w
60 cglobal emu_edge_vvar, 1, 6, 1, dst, src, start_y, end_y, bh, w
273 start_y, end_y, val, bh
276 cglobal emu_edge_vfix %+ %%n, 0, 6, 0, val, dst, src, start_y, end_y, bh
288 start_y, end_y, bh
290 cglobal emu_edge_vfix %+ %%n, 1, 5, 1, dst, src, start_y, end_y, bh
300 sub bhq, end_yq ; bh -= end_y
301 sub end_yq, start_yq ; end_y -= start_y
319 dec end_yq ; } while (--end_y)
/third_party/astc-encoder/Utils/
Dastc_test_autoextract.cpp175 int end_y = (worst_y_block + 1) * blockdim_y; in main() local
183 if (end_y > ref_dim_y) in main()
185 end_y = ref_dim_y; in main()
189 int outblk_y = end_y - start_y; in main()
Dastc_test_autoextract_hdr.cpp175 int end_y = (worst_y_block + 1) * blockdim_y; in main() local
183 if (end_y > ref_dim_y) in main()
185 end_y = ref_dim_y; in main()
189 int outblk_y = end_y - start_y; in main()
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/
DesextcGeometryShaderRendering.cpp2146 float end_y = 0; in GeometryShaderRenderingLinesCase() local
2157 end_y = 0.0f; in GeometryShaderRenderingLinesCase()
2163 end_y = 1; in GeometryShaderRenderingLinesCase()
2181 …quad_coordinates.push_back(tcu::Vec4(1 - dx_multiplier * dx, end_y - dy_multiplier * dy, 1, w)); /… in GeometryShaderRenderingLinesCase()
2182 …quad_coordinates.push_back(tcu::Vec4(-1 + dx_multiplier * dx, end_y - dy_multiplier * dy, 1, w)); … in GeometryShaderRenderingLinesCase()
3416 int end_y = 0; in verify() local
3430 end_y = start_y; in verify()
3445 end_y = start_y + single_rt_height - 6; /* skip the corners */ in verify()
3460 end_y = start_y; in verify()
3475 end_y = start_y + single_rt_height - 6; /* skip the corners */ in verify()
[all …]
/third_party/python/Lib/idlelib/idle_test/
Dtest_sidebar.py276 end_x, end_y = self.get_line_screen_position(end_line)
290 map(int, lerp(start_y, end_y, steps=11)),
296 x=end_x, y=end_y)
/third_party/astc-encoder/Source/
Dastcenc_entry.cpp894 int end_y = astc::min(dim_y, start_y + block_y); in compress_image() local
908 for (int ay = start_y; ay < end_y; ay++) in compress_image()
917 ay = end_y; in compress_image()
/third_party/ffmpeg/libavfilter/opencl/
Ddeshake.cl385 int end_y = min(loc_i.y + 32, (int)get_image_dim(grayscale).y - 1);
388 for (int j = loc_i.y; j < end_y; ++j) {