Searched refs:dst_g (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 1272 dst_g = (uint16_t *)p->data[0]; in decode_argxi() 1281 dst_g[x] = get_bits(gb, 10); in decode_argxi() 1297 dst_g[x] = pred[1] = (r + g + pred[1]) & 0x3ff; in decode_argxi() 1303 dst_g += p->linesize[0] / 2; in decode_argxi() 1312 uint16_t *dst_r, *dst_g, *dst_b, *dst_a; in decode_argx() local 1316 dst_g = (uint16_t *)p->data[0]; in decode_argx() 1324 dst_g[x] = get_bits(gb, 10); in decode_argx() 1340 dst_g[x] = pred[1] = (r + g + pred[1]) & 0x3ff; in decode_argx() 1346 dst_g 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 | 118 type *dst_g = (type *)(td->dstrow[G]) + src_linesize * slice_start; \ 158 dst_g[x] = clip(og, depth); \ 162 dst_g[x] = clip((ig - imin_g) * coeff_g + omin_g, depth); \ 176 dst_g += dst_linesize; \
|
H A D | vf_huesaturation.c | 115 type *dst_g = row + offset_g; \ 123 ig = go = dst_g[x]; \ 161 dst_g[x] = clip(ig); \ 166 dst_g += linesize; \
|
H A D | vf_selectivecolor.c | 334 uint##nbits##_t *dst_g = (uint##nbits##_t *)dst + goffset; \ 389 dst_g[x] = av_clip_uint##nbits(g + adjust_g); \ 402 dst_g += dst_linesize; \
|
H A D | vsrc_gradients.c | 304 float *dst_g = (float *)frame->data[0] + start * linesize_g; in draw_gradients_slice32_planar() local 313 &dst_r[x], &dst_g[x], &dst_b[x], &dst_a[x]); in draw_gradients_slice32_planar() 316 dst_g += linesize_g; in draw_gradients_slice32_planar()
|
/third_party/skia/third_party/externals/libwebp/examples/ |
H A D | anim_diff.c | 49 const int dst_g = (dst >> 8) & 0xff; in PixelsAreSimilar() local 53 (abs(src_g * src_a - dst_g * dst_a) <= (max_allowed_diff * 255)) && in PixelsAreSimilar()
|
/third_party/skia/third_party/externals/libwebp/src/mux/ |
H A D | anim_encode.c | 375 const int dst_g = (dst >> 8) & 0xff; in PixelsAreSimilar() local 380 (abs(src_g - dst_g) * dst_a <= (max_allowed_diff * 255)) && in PixelsAreSimilar()
|
Completed in 11 milliseconds