/third_party/ffmpeg/libavcodec/ |
H A D | gif.c | 168 y_end = h - 1; in gif_crop_translucent() local 171 while (*y_start < y_end) { in gif_crop_translucent() 186 while (y_end > *y_start) { in gif_crop_translucent() 189 if (buf[linesize * y_end + i] != trans) { in gif_crop_translucent() 196 y_end--; in gif_crop_translucent() 202 for (int i = *y_start; i < y_end; i++) { in gif_crop_translucent() 216 for (int i = *y_start; i < y_end; i++) { in gif_crop_translucent() 227 *height = y_end + 1 - *y_start; in gif_crop_translucent() 246 y_end = avctx->height - 1; in gif_crop_opaque() local 249 while (*y_start < y_end) { in gif_crop_opaque() [all...] |
H A D | cpia.c | 64 uint8_t *y, *u, *v, *y_end, *u_end, *v_end; in cpia_decode_frame() local 134 y_end = y + frame->linesize[0] - 1; in cpia_decode_frame() 143 if (y > y_end) { in cpia_decode_frame() 163 if (y + 1 > y_end || u > u_end || v > v_end) { in cpia_decode_frame()
|
H A D | hevc_filter.c | 495 int x_end, x_end2, y_end; in deblocking_filter_CTB() local 518 y_end = y0 + ctb_size; in deblocking_filter_CTB() 519 if (y_end > s->ps.sps->height) in deblocking_filter_CTB() 520 y_end = s->ps.sps->height; in deblocking_filter_CTB() 528 for (y = y0; y < y_end; y += 8) { in deblocking_filter_CTB() 595 for (y = y0; y < y_end; y += (8 * v)) { in deblocking_filter_CTB() 868 int y_end = y >= s->ps.sps->height - ctb_size; in ff_hevc_hls_filter() local 871 if (x && y_end) in ff_hevc_hls_filter() 878 if (x_end && y_end) { in ff_hevc_hls_filter() 890 int y_end in ff_hevc_hls_filters() local [all...] |
H A D | vp9block.c | 1434 int x_end = FFMIN(s->cols - col, w4), y_end = FFMIN(s->rows - row, h4); in ff_vp9_decode_block() local 1438 mask_edges(lflvl->mask[0], 0, 0, row7, col7, x_end, y_end, 0, 0, b->tx, skip_inter); in ff_vp9_decode_block() 1440 mask_edges(lflvl->mask[1], s->ss_h, s->ss_v, row7, col7, x_end, y_end, in ff_vp9_decode_block()
|
H A D | h264_slice.c | 2950 int y_end, x_end; in ff_h264_execute_decode_slices() local 2953 y_end = FFMIN(sl->mb_y + 1, h->mb_height); in ff_h264_execute_decode_slices() 2956 for (j = sl->resync_mb_y; j < y_end; j += 1 + FIELD_OR_MBAFF_PICTURE(h)) { in ff_h264_execute_decode_slices() 2959 j == y_end - 1 ? x_end : h->mb_width); in ff_h264_execute_decode_slices()
|
H A D | hevcdec.c | 1312 int y_end = FFMIN(y0 + cb_size, s->ps.sps->height); in set_deblocking_bypass() local 1315 for (j = (y0 >> log2_min_pu_size); j < (y_end >> log2_min_pu_size); j++) in set_deblocking_bypass()
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | lossless.c | 202 int y_start, int y_end, in PredictorInverseTransform_C() 221 while (y < y_end) { in PredictorInverseTransform_C() 293 int y_start, int y_end, in ColorSpaceInverseTransform_C() 305 while (y < y_end) { in ColorSpaceInverseTransform_C() 332 TYPE* dst, int y_start, int y_end, int width) { \ 334 for (y = y_start; y < y_end; ++y) { \ 342 int y_start, int y_end, const TYPE* src, \ 352 for (y = y_start; y < y_end; ++y) { \ 366 VP8LMapColor##BIT_SUFFIX(src, color_map, dst, y_start, y_end, width); \ 201 PredictorInverseTransform_C(const VP8LTransform* const transform, int y_start, int y_end, const uint32_t* in, uint32_t* out) PredictorInverseTransform_C() argument 292 ColorSpaceInverseTransform_C(const VP8LTransform* const transform, int y_start, int y_end, const uint32_t* src, uint32_t* dst) ColorSpaceInverseTransform_C() argument
|
H A D | lossless.h | 98 int y_end, int width); 102 int y_end, int width); 111 const struct VP8LTransform* const transform, int y_start, int y_end,
|
H A D | lossless_mips_dsp_r2.c | 25 TYPE* dst, int y_start, int y_end, \ 28 for (y = y_start; y < y_end; ++y) { \
|
/third_party/skia/third_party/externals/libwebp/src/dec/ |
H A D | frame_dec.c | 434 int y_end = MACROBLOCK_VPOS(mb_y + 1); in FinishRow() local 447 y_end -= extra_y_rows; in FinishRow() 449 if (y_end > io->crop_bottom) { in FinishRow() 450 y_end = io->crop_bottom; // make sure we don't overflow on last row. in FinishRow() 454 if (dec->alpha_data_ != NULL && y_start < y_end) { in FinishRow() 455 io->a = VP8DecompressAlphaRows(dec, io, y_start, y_end - y_start); in FinishRow() 472 if (y_start < y_end) { in FinishRow() 481 io->mb_h = y_end - y_start; in FinishRow()
|
H A D | io_dec.c | 68 const int y_end = io->mb_y + io->mb_h; in EmitFancyRGB() local 82 for (; y + 2 < y_end; y += 2) { in EmitFancyRGB() 95 if (io->crop_top + y_end < io->crop_bottom) { in EmitFancyRGB() 105 if (!(y_end & 1)) { in EmitFancyRGB() 477 const int y_end = p->last_y + lines_left; in EmitRescaledAlphaRGB() local 482 lines_left -= p->emit_alpha_row(p, y_end - lines_left, lines_left); in EmitRescaledAlphaRGB()
|
H A D | vp8l_dec.c | 722 static int SetCropWindow(VP8Io* const io, int y_start, int y_end, in SetCropWindow() argument 724 assert(y_start < y_end); in SetCropWindow() 726 if (y_end > io->crop_bottom) { in SetCropWindow() 727 y_end = io->crop_bottom; // make sure we don't overflow on last row. in SetCropWindow() 734 if (y_start >= y_end) return 0; // Crop window is empty. in SetCropWindow() 740 io->mb_h = y_end - y_start; in SetCropWindow()
|
/third_party/astc-encoder/Source/ |
H A D | astcenc_image.cpp | 352 unsigned int y_end = astc::min(y_size, ypos + bsd.ydim); in store_image_block() local 353 unsigned int y_count = y_end - y_start; in store_image_block() 376 for (unsigned int y = y_start; y < y_end; y++) in store_image_block() 453 for (unsigned int y = y_start; y < y_end; y++) in store_image_block() 515 for (unsigned int y = y_start; y < y_end; y++) in store_image_block()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_paletteuse.c | 850 y_end = cur_src->height - 1; in set_processing_window() local 862 while (y_start < y_end && !memcmp(prv_srcp + y_start*prv_src_linesize, in set_processing_window() 870 while (y_end > y_start && !memcmp(prv_srcp + y_end*prv_src_linesize, in set_processing_window() 871 cur_srcp + y_end*cur_src_linesize, in set_processing_window() 873 memcpy(cur_dstp + y_end*cur_dst_linesize, in set_processing_window() 874 prv_dstp + y_end*prv_dst_linesize, in set_processing_window() 876 y_end--; in set_processing_window() 879 height = y_end + 1 - y_start; in set_processing_window() 884 for (y = y_start; y <= y_end; in set_processing_window() [all...] |
H A D | vf_fieldmatch.c | 333 #define VERTICAL_HALF(y_start, y_end) do { \ in calc_combed_score() 334 for (y = y_start; y < y_end; y++) { \ in calc_combed_score()
|
/third_party/skia/third_party/externals/libwebp/src/mux/ |
H A D | anim_encode.c | 717 const int y_end = (rect->y_offset_ + rect->height_) & ~(block_size - 1); in FlattenSimilarBlocks() local 724 for (j = y_start; j < y_end; j += block_size) { in FlattenSimilarBlocks()
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui_draw.cpp | 2782 float y_end = y; in RenderText() local 2783 while (y_end < clip_rect.w && s_end < text_end) in RenderText() 2787 y_end += line_height; in RenderText()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_draw.cpp | 3567 float y_end = y; in RenderText() local 3568 while (y_end < clip_rect.w && s_end < text_end) in RenderText() 3572 y_end += line_height; in RenderText()
|