Home
last modified time | relevance | path

Searched refs:lines_per_thread (Results 1 – 2 of 2) sorted by relevance

/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/
Dvideo-converter.c3269 gint lines_per_thread; in video_converter_generic() local
3324 lines_per_thread = in video_converter_generic()
3337 tasks[i].h_0 = i * lines_per_thread; in video_converter_generic()
3338 tasks[i].h_1 = MIN ((i + 1) * lines_per_thread, out_height); in video_converter_generic()
3418 gint lines_per_thread; in convert_I420_YUY2() local
3435 lines_per_thread = GST_ROUND_UP_2 ((h2 + n_threads - 1) / n_threads); in convert_I420_YUY2()
3444 tasks[i].height_0 = i * lines_per_thread; in convert_I420_YUY2()
3445 tasks[i].height_1 = tasks[i].height_0 + lines_per_thread; in convert_I420_YUY2()
3495 gint lines_per_thread; in convert_I420_UYVY() local
3512 lines_per_thread = GST_ROUND_UP_2 ((h2 + n_threads - 1) / n_threads); in convert_I420_UYVY()
[all …]
/third_party/gstreamer/gstplugins_base/gst/compositor/
Dcompositor.c1435 guint n_threads, lines_per_thread; in gst_compositor_aggregate_frames() local
1446 lines_per_thread = (out_height + n_threads - 1) / n_threads; in gst_compositor_aggregate_frames()
1458 tasks[i].dst_line_start = i * lines_per_thread; in gst_compositor_aggregate_frames()
1459 tasks[i].dst_line_end = MIN ((i + 1) * lines_per_thread, out_height); in gst_compositor_aggregate_frames()