Home
last modified time | relevance | path

Searched refs:x_end (Results 1 - 12 of 12) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dgif.c167 int x_end = w - 1, in gif_crop_translucent() local
200 while (*x_start < x_end) { in gif_crop_translucent()
214 while (x_end > *x_start) { in gif_crop_translucent()
217 if (buf[linesize * i + x_end] != trans) { in gif_crop_translucent()
224 x_end--; in gif_crop_translucent()
228 *width = x_end + 1 - *x_start; in gif_crop_translucent()
245 int x_end = avctx->width - 1, in gif_crop_opaque() local
262 while (*x_start < x_end) { in gif_crop_opaque()
274 while (x_end > *x_start) { in gif_crop_opaque()
277 if (ref[y*ref_linesize + x_end] ! in gif_crop_opaque()
[all...]
H A Dhevc_filter.c495 int x_end, x_end2, y_end; in deblocking_filter_CTB() local
515 x_end = x0 + ctb_size; in deblocking_filter_CTB()
516 if (x_end > s->ps.sps->width) in deblocking_filter_CTB()
517 x_end = s->ps.sps->width; in deblocking_filter_CTB()
525 x_end2 = x_end; in deblocking_filter_CTB()
530 for (x = x0 ? x0 : 8; x < x_end; x += 8) { in deblocking_filter_CTB()
596 for (x = x0 ? x0 : 8 * h; x < x_end; x += (8 * h)) { in deblocking_filter_CTB()
627 x_end2 = x_end; in deblocking_filter_CTB()
628 if (x_end != s->ps.sps->width) in deblocking_filter_CTB()
629 x_end2 = x_end in deblocking_filter_CTB()
853 int x_end = x >= s->ps.sps->width - ctb_size; ff_hevc_hls_filter() local
889 int x_end = x_ctb >= s->ps.sps->width - ctb_size; ff_hevc_hls_filters() local
[all...]
H A Dvp9block.c1434 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 Dh264_slice.c2950 int y_end, x_end; in ff_h264_execute_decode_slices() local
2954 x_end = (sl->mb_y >= h->mb_height) ? h->mb_width : sl->mb_x; in ff_h264_execute_decode_slices()
2959 j == y_end - 1 ? x_end : h->mb_width); in ff_h264_execute_decode_slices()
H A Dhevcdec.c1311 int x_end = FFMIN(x0 + cb_size, s->ps.sps->width); in set_deblocking_bypass() local
1316 for (i = (x0 >> log2_min_pu_size); i < (x_end >> log2_min_pu_size); i++) in set_deblocking_bypass()
/third_party/skia/third_party/externals/libwebp/src/enc/
H A Dpredictor_enc.c236 int x_start, int x_end, int y, int max_quantization, int exact, in GetResidual()
239 PredictBatch(mode, x_start, y, x_end - x_start, current_row, upper_row, in GetResidual()
244 for (x = x_start; x < x_end; ++x) { in GetResidual()
460 int x_end = x + (1 << bits); in CopyImageWithPrediction() local
461 if (x_end > width) x_end = width; in CopyImageWithPrediction()
463 mode, x, x_end, y, max_quantization, exact, in CopyImageWithPrediction()
465 x = x_end; in CopyImageWithPrediction()
233 GetResidual( int width, int height, uint32_t* const upper_row, uint32_t* const current_row, const uint8_t* const max_diffs, int mode, int x_start, int x_end, int y, int max_quantization, int exact, int used_subtract_green, uint32_t* const out) GetResidual() argument
/third_party/ffmpeg/libavfilter/
H A Dvf_paletteuse.c849 int x_end = cur_src->width - 1, in set_processing_window() local
882 while (x_start < x_end) { in set_processing_window()
894 while (x_end > x_start) { in set_processing_window()
897 if (prv_srcp[y*prv_src_linesize + x_end] != cur_srcp[y*cur_src_linesize + x_end]) { in set_processing_window()
904 x_end--; in set_processing_window()
906 width = x_end + 1 - x_start; in set_processing_window()
913 if (x_end != cur_src->width - 1) { in set_processing_window()
914 const int copy_len = cur_src->width - 1 - x_end; in set_processing_window()
916 memcpy(cur_dstp + y*cur_dst_linesize + x_end in set_processing_window()
[all...]
H A Dvf_curves.c314 const int x_end = point->next->x * scale; in interpolate() local
317 x_end >= 0 && x_end < lut_size); in interpolate()
319 for (x = x_start; x <= x_end; x++) { in interpolate()
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Dlossless.c230 int x_end = (x & ~mask) + tile_width; in PredictorInverseTransform_C() local
231 if (x_end > width) x_end = width; in PredictorInverseTransform_C()
232 pred_func(in + x, out + x - width, x_end - x, out + x); in PredictorInverseTransform_C()
233 x = x_end; in PredictorInverseTransform_C()
/third_party/astc-encoder/Source/
H A Dastcenc_image.cpp346 unsigned int x_end = astc::min(x_size, xpos + bsd.xdim); in store_image_block() local
347 unsigned int x_count = x_end - x_start; in store_image_block()
/third_party/skia/third_party/externals/libwebp/src/mux/
H A Danim_encode.c719 const int x_end = (rect->x_offset_ + rect->width_) & ~(block_size - 1); in FlattenSimilarBlocks() local
725 for (i = x_start; i < x_end; i += block_size) { in FlattenSimilarBlocks()
/third_party/backends/backend/
H A Dcanon_lide70-common.c2927 long x_end; in do_scan() local
2979 x_end = x_start + (width); in do_scan()
2984 chndl->value_0a = (x_end >> 8) & 0xff; in do_scan()
2985 chndl->value_0b = (x_end) & 0xff; in do_scan()

Completed in 27 milliseconds