Home
last modified time | relevance | path

Searched refs:x_end (Results 1 – 13 of 13) sorted by relevance

/third_party/gstreamer/gstplugins_bad/gst/dvbsubenc/
Dgstdvbsubenc-util.c331 int x_end = x; in encode_rle2() local
335 pix = pixels[x_end++]; in encode_rle2()
336 while (x_end < w && pixels[x_end] == pix) in encode_rle2()
337 x_end++; in encode_rle2()
344 run_length = MIN (x_end - x, 284); in encode_rle2()
420 int x_end = x; in encode_rle4() local
424 pix = pixels[x_end++]; in encode_rle4()
425 while (x_end < w && pixels[x_end] == pix) in encode_rle4()
426 x_end++; in encode_rle4()
429 run_length = MIN (x_end - x, 280); in encode_rle4()
[all …]
/third_party/ffmpeg/libavcodec/
Dgif.c166 int x_end = w - 1, in gif_crop_translucent() local
199 while (*x_start < x_end) { in gif_crop_translucent()
213 while (x_end > *x_start) { in gif_crop_translucent()
216 if (buf[linesize * i + x_end] != trans) { in gif_crop_translucent()
223 x_end--; in gif_crop_translucent()
227 *width = x_end + 1 - *x_start; in gif_crop_translucent()
244 int x_end = avctx->width - 1, in gif_crop_opaque() local
261 while (*x_start < x_end) { in gif_crop_opaque()
273 while (x_end > *x_start) { in gif_crop_opaque()
276 if (ref[y*ref_linesize + x_end] != buf[y*linesize + x_end]) { in gif_crop_opaque()
[all …]
Dhevc_filter.c486 int x_end, x_end2, y_end; in deblocking_filter_CTB() local
506 x_end = x0 + ctb_size; in deblocking_filter_CTB()
507 if (x_end > s->ps.sps->width) in deblocking_filter_CTB()
508 x_end = s->ps.sps->width; in deblocking_filter_CTB()
516 x_end2 = x_end; in deblocking_filter_CTB()
521 for (x = x0 ? x0 : 8; x < x_end; x += 8) { in deblocking_filter_CTB()
587 for (x = x0 ? x0 : 8 * h; x < x_end; x += (8 * h)) { in deblocking_filter_CTB()
618 x_end2 = x_end; in deblocking_filter_CTB()
619 if (x_end != s->ps.sps->width) in deblocking_filter_CTB()
620 x_end2 = x_end - 8 * h; in deblocking_filter_CTB()
[all …]
Dvp9block.c1436 int x_end = FFMIN(s->cols - col, w4), y_end = FFMIN(s->rows - row, h4); in ff_vp9_decode_block() local
1440 mask_edges(lflvl->mask[0], 0, 0, row7, col7, x_end, y_end, 0, 0, b->tx, skip_inter); in ff_vp9_decode_block()
1442 mask_edges(lflvl->mask[1], s->ss_h, s->ss_v, row7, col7, x_end, y_end, in ff_vp9_decode_block()
Dh264_slice.c2863 int y_end, x_end; in ff_h264_execute_decode_slices() local
2867 x_end = (sl->mb_y >= h->mb_height) ? h->mb_width : sl->mb_x; in ff_h264_execute_decode_slices()
2872 j == y_end - 1 ? x_end : h->mb_width); in ff_h264_execute_decode_slices()
Dhevcdec.c1291 int x_end = FFMIN(x0 + cb_size, s->ps.sps->width); in set_deblocking_bypass() local
1296 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/
Dpredictor_enc.c236 int x_start, int x_end, int y, int max_quantization, int exact, in GetResidual() argument
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()
/third_party/astc-encoder/Source/
Dastcenc_image.cpp349 unsigned int x_end = std::min(xsize, xpos + bsd.xdim); in write_image_block() local
350 unsigned int x_nudge = bsd.xdim - (x_end - x_start); in write_image_block()
381 for (unsigned int x = x_start; x < x_end; x++) in write_image_block()
437 for (unsigned int x = x_start; x < x_end; x++) in write_image_block()
493 for (unsigned int x = x_start; x < x_end; x++) in write_image_block()
/third_party/ffmpeg/libavfilter/
Dvf_paletteuse.c814 int x_end = cur_src->width - 1, in set_processing_window() local
847 while (x_start < x_end) { in set_processing_window()
859 while (x_end > x_start) { in set_processing_window()
862 if (prv_srcp[y*prv_src_linesize + x_end] != cur_srcp[y*cur_src_linesize + x_end]) { in set_processing_window()
869 x_end--; in set_processing_window()
871 width = x_end + 1 - x_start; in set_processing_window()
878 if (x_end != cur_src->width - 1) { in set_processing_window()
879 const int copy_len = cur_src->width - 1 - x_end; in set_processing_window()
881 memcpy(cur_dstp + y*cur_dst_linesize + x_end + 1, in set_processing_window()
882 prv_dstp + y*prv_dst_linesize + x_end + 1, in set_processing_window()
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/
Dlossless.c230 int x_end = (x & ~mask) + tile_width; in GENERATE_PREDICTOR_ADD() local
231 if (x_end > width) x_end = width; in GENERATE_PREDICTOR_ADD()
232 pred_func(in + x, out + x - width, x_end - x, out + x); in GENERATE_PREDICTOR_ADD()
233 x = x_end; in GENERATE_PREDICTOR_ADD()
/third_party/gstreamer/gstplugins_bad/gst/librfb/
Drfbdecoder.c1014 gint32 x, x_count G_GNUC_UNUSED, x_end, x_max, x_max_16; in rfb_decoder_hextile_encoding() local
1020 x_end = rect_w % 16; in rfb_decoder_hextile_encoding()
1021 x_count = rect_w / 16 + (x_end > 0 ? 1 : 0); in rfb_decoder_hextile_encoding()
1039 (x <= x_max_16 ? 16 : x_end), (y <= y_max_16 ? 16 : y_end)); in rfb_decoder_hextile_encoding()
1050 (x <= x_max_16 ? 16 : x_end), (y <= y_max_16 ? 16 : y_end), in rfb_decoder_hextile_encoding()
/third_party/skia/third_party/externals/libwebp/src/mux/
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()