Searched refs:tmpsrcline (Results 1 – 1 of 1) sorted by relevance
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/ |
D | video-blend.c | 303 guint8 *tmpdestline = NULL, *tmpsrcline = NULL; in gst_video_blend() local 395 tmpsrcline = g_malloc (sizeof (guint8) * (src_width + 8) * 4); in gst_video_blend() 403 sinfo->unpack_func (sinfo, 0, tmpsrcline, src->data, src->info.stride, in gst_video_blend() 409 matrix (tmpsrcline, src_width); in gst_video_blend() 418 asrc = ((guint) tmpsrcline[j]) * alpha_val / max; \ in gst_video_blend() 429 … BLENDC (op, max, alpha_val, asrc, tmpsrcline[j + 1] << shift, adst, dest[j + 1], final_alpha); \ in gst_video_blend() 430 … BLENDC (op, max, alpha_val, asrc, tmpsrcline[j + 2] << shift, adst, dest[j + 2], final_alpha); \ in gst_video_blend() 431 … BLENDC (op, max, alpha_val, asrc, tmpsrcline[j + 3] << shift, adst, dest[j + 3], final_alpha); \ in gst_video_blend() 501 g_free (tmpsrcline); in gst_video_blend()
|