Searched refs:dst_b (Results 1 - 7 of 7) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | sheervideo.c | 1268 uint16_t *dst_r, *dst_g, *dst_b, *dst_a; in decode_argxi() local 1273 dst_b = (uint16_t *)p->data[1]; in decode_argxi() 1282 dst_b[x] = get_bits(gb, 10); in decode_argxi() 1298 dst_b[x] = pred[2] = (r + g + b + pred[2]) & 0x3ff; in decode_argxi() 1304 dst_b += p->linesize[1] / 2; in decode_argxi() 1312 uint16_t *dst_r, *dst_g, *dst_b, *dst_a; in decode_argx() local 1317 dst_b = (uint16_t *)p->data[1]; in decode_argx() 1325 dst_b[x] = get_bits(gb, 10); in decode_argx() 1341 dst_b[x] = pred[2] = (r + g + b + pred[2]) & 0x3ff; in decode_argx() 1347 dst_b in decode_argx() 1400 uint16_t *dst_r, *dst_g, *dst_b; decode_rgbxi() local 1439 uint16_t *dst_r, *dst_g, *dst_b; decode_rgbx() local [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_colorlevels.c | 119 type *dst_b = (type *)(td->dstrow[B]) + src_linesize * slice_start; \ 159 dst_b[x] = clip(ob, depth); \ 163 dst_b[x] = clip((ib - imin_b) * coeff_b + omin_b, depth); \ 177 dst_b += dst_linesize; \
|
H A D | vf_huesaturation.c | 116 type *dst_b = row + offset_b; \ 124 ib = bo = dst_b[x]; \ 162 dst_b[x] = clip(ib); \ 167 dst_b += linesize; \
|
H A D | vf_selectivecolor.c | 335 uint##nbits##_t *dst_b = (uint##nbits##_t *)dst + boffset; \ 390 dst_b[x] = av_clip_uint##nbits(b + adjust_b); \ 403 dst_b += dst_linesize; \
|
H A D | vsrc_gradients.c | 305 float *dst_b = (float *)frame->data[0] + start * linesize_b; in draw_gradients_slice32_planar() local 313 &dst_r[x], &dst_g[x], &dst_b[x], &dst_a[x]); in draw_gradients_slice32_planar() 317 dst_b += linesize_b; in draw_gradients_slice32_planar()
|
/third_party/skia/third_party/externals/libwebp/examples/ |
H A D | anim_diff.c | 50 const int dst_b = (dst >> 0) & 0xff; in PixelsAreSimilar() local 54 (abs(src_b * src_a - dst_b * dst_a) <= (max_allowed_diff * 255)) && in PixelsAreSimilar()
|
/third_party/skia/third_party/externals/libwebp/src/mux/ |
H A D | anim_encode.c | 376 const int dst_b = (dst >> 0) & 0xff; in PixelsAreSimilar() local 381 (abs(src_b - dst_b) * dst_a <= (max_allowed_diff * 255)); in PixelsAreSimilar()
|
Completed in 11 milliseconds