Home
last modified time | relevance | path

Searched refs:step_y (Results 1 – 4 of 4) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dj2kenc.c942 int step_x, step_y; in encode_packets() local
990 step_y = 30; in encode_packets()
997 step_y = FFMIN(step_y, rlevel->log2_prec_height + reducedresno); in encode_packets()
1002 step_y = 1<<step_y; in encode_packets()
1003 for (y = tile_coord[1][0]; y < tile_coord[1][1]; y = (y/step_y + 1)*step_y) { in encode_packets()
1048 step_y = 32; in encode_packets()
1056 step_y = FFMIN(step_y, rlevel->log2_prec_height + reducedresno); in encode_packets()
1059 if (step_x >= 31 || step_y >= 31){ in encode_packets()
1064 step_y = 1<<step_y; in encode_packets()
1066 for (y = tile_coord[1][0]; y < tile_coord[1][1]; y = (y/step_y + 1)*step_y) { in encode_packets()
[all …]
Djpeg2000dec.c1308 int step_x, step_y; in jpeg2000_decode_packets_po_iteration() local
1370 step_y = 32; in jpeg2000_decode_packets_po_iteration()
1379 step_y = FFMIN(step_y, rlevel->log2_prec_height + reducedresno); in jpeg2000_decode_packets_po_iteration()
1381 if (step_x >= 31 || step_y >= 31){ in jpeg2000_decode_packets_po_iteration()
1386 step_y = 1<<step_y; in jpeg2000_decode_packets_po_iteration()
1388 for (y = tile->coord[1][0]; y < tile->coord[1][1]; y = (y/step_y + 1)*step_y) { in jpeg2000_decode_packets_po_iteration()
1436 step_y = 30; in jpeg2000_decode_packets_po_iteration()
1445 step_y = FFMIN(step_y, rlevel->log2_prec_height + reducedresno); in jpeg2000_decode_packets_po_iteration()
1449 step_y = 1<<step_y; in jpeg2000_decode_packets_po_iteration()
1451 for (y = tile->coord[1][0]; y < tile->coord[1][1]; y = (y/step_y + 1)*step_y) { in jpeg2000_decode_packets_po_iteration()
[all …]
Dh264_ps.c548 int step_y = (2 - sps->frame_mbs_only_flag) << vsub; in ff_h264_decode_seq_parameter_set() local
552 crop_top > (unsigned)INT_MAX / 4 / step_y || in ff_h264_decode_seq_parameter_set()
553 crop_bottom> (unsigned)INT_MAX / 4 / step_y || in ff_h264_decode_seq_parameter_set()
555 (crop_top + crop_bottom) * step_y >= height in ff_h264_decode_seq_parameter_set()
563 sps->crop_top = crop_top * step_y; in ff_h264_decode_seq_parameter_set()
564 sps->crop_bottom = crop_bottom * step_y; in ff_h264_decode_seq_parameter_set()
/third_party/libinput/test/
Dlitest.c2582 double step_y = dy / steps * i; in litest_touch_move_three_touches() local
2585 litest_touch_move(d, 0, x0 + step_x, y0 + step_y); in litest_touch_move_three_touches()
2586 litest_touch_move(d, 1, x1 + step_x, y1 + step_y); in litest_touch_move_three_touches()
2587 litest_touch_move(d, 2, x2 + step_x, y2 + step_y); in litest_touch_move_three_touches()