Home
last modified time | relevance | path

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

/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/
Dvideo-blend.c63 matrix_identity (guint8 * tmpline, guint width) in matrix_identity() argument
68 matrix_prea_rgb_to_yuv (guint8 * tmpline, guint width) in matrix_prea_rgb_to_yuv() argument
75 a = tmpline[i * 4 + 0]; in matrix_prea_rgb_to_yuv()
76 r = tmpline[i * 4 + 1]; in matrix_prea_rgb_to_yuv()
77 g = tmpline[i * 4 + 2]; in matrix_prea_rgb_to_yuv()
78 b = tmpline[i * 4 + 3]; in matrix_prea_rgb_to_yuv()
89 tmpline[i * 4 + 1] = CLAMP (y, 0, 255); in matrix_prea_rgb_to_yuv()
90 tmpline[i * 4 + 2] = CLAMP (u, 0, 255); in matrix_prea_rgb_to_yuv()
91 tmpline[i * 4 + 3] = CLAMP (v, 0, 255); in matrix_prea_rgb_to_yuv()
96 matrix_rgb_to_yuv (guint8 * tmpline, guint width) in matrix_rgb_to_yuv() argument
[all …]
Dvideo-converter.c371 guint16 **tmpline; member
707 gpointer tmpline; in get_temp_line() local
710 tmpline = &alloc->data[alloc->stride * alloc->idx]; in get_temp_line()
713 return tmpline; in get_temp_line()
721 gpointer tmpline; in get_border_temp_line() local
724 tmpline = &alloc->data[alloc->stride * alloc->idx] + in get_border_temp_line()
728 return tmpline; in get_border_temp_line()
2650 if (convert->tmpline) { in gst_video_converter_free()
2652 g_free (convert->tmpline[i]); in gst_video_converter_free()
2653 g_free (convert->tmpline); in gst_video_converter_free()
[all …]
/third_party/gstreamer/gstplugins_base/gst/videotestsrc/
Dvideotestsrc.c229 p->tmpline = v->tmpline; in videotestsrc_setup_paintinfo()
294 guint8 *tmpline = p->tmpline, *tmpline2 = p->tmpline2; in videotestsrc_convert_tmpline() local
305 memcpy (tmpline2, tmpline + x * 4, (width - x) * 4); in videotestsrc_convert_tmpline()
306 memcpy (tmpline2 + (width - x) * 4, tmpline, x * 4); in videotestsrc_convert_tmpline()
307 p->tmpline = tmpline2; in videotestsrc_convert_tmpline()
308 p->tmpline2 = tmpline; in videotestsrc_convert_tmpline()
312 p->tmpline[4 * i + 0] = p->tmpline[4 * (width - 1) + 0]; in videotestsrc_convert_tmpline()
313 p->tmpline[4 * i + 1] = p->tmpline[4 * (width - 1) + 1]; in videotestsrc_convert_tmpline()
314 p->tmpline[4 * i + 2] = p->tmpline[4 * (width - 1) + 2]; in videotestsrc_convert_tmpline()
315 p->tmpline[4 * i + 3] = p->tmpline[4 * (width - 1) + 3]; in videotestsrc_convert_tmpline()
[all …]
Dgstvideotestsrc.h202 guint8 *tmpline; member
Dvideotestsrc.h48 guint8 *tmpline; member
Dgstvideotestsrc.c952 g_free (videotestsrc->tmpline); in gst_video_test_src_setcaps()
957 videotestsrc->tmpline = g_malloc ((info.width + 8) * 4); in gst_video_test_src_setcaps()
1253 g_free (src->tmpline); in gst_video_test_src_stop()
1254 src->tmpline = NULL; in gst_video_test_src_stop()
/third_party/toybox/toys/posix/
Duniq.c62 char *thisline = 0, *prevline = 0, *tmpline, eol = '\n'; in uniq_main() local
96 tmpline = prevline; in uniq_main()
98 thisline = tmpline; in uniq_main()
/third_party/skia/third_party/externals/libpng/contrib/gregbook/
Drpng-x.c168 char tmpline[80]; in main() local
205 fgets(tmpline, 80, infile); in main()
207 sgi_gamma = atof(tmpline); in main()
Dwpng.c162 char tmpline[80]; in main() local
214 fgets(tmpline, 80, tmpfile); in main()
216 sgi_gamma = atof(tmpline); in main()
Drpng-win.c216 fgets(tmpline, 80, infile); in WinMain()
218 sgi_gamma = atof(tmpline); in WinMain()
Drpng2-win.c333 fgets(tmpline, 80, infile); in WinMain()
335 sgi_gamma = atof(tmpline); in WinMain()
Drpng2-x.c313 char tmpline[80]; in main() local
361 fgets(tmpline, 80, infile); in main()
363 sgi_gamma = atof(tmpline); in main()
/third_party/gstreamer/gstplugins_base/
DChangeLog2724 videotestsrc: Keep tmpline unchanged in_convert_tmpline