Searched refs:GET_LINE (Results 1 – 5 of 5) sorted by relevance
/third_party/gstreamer/gstplugins_bad/gst/ivtc/ |
D | gstcombdetect.c | 201 #define GET_LINE(frame,comp,line) (((unsigned char *)(frame)->data[k]) + \ in gst_comb_detect_transform_frame() macro 211 memcpy (GET_LINE (outframe, k, i), GET_LINE (inframe, k, i), width); in gst_comb_detect_transform_frame() 229 guint8 *dest = GET_LINE (outframe, 0, j); in gst_comb_detect_transform_frame() 230 guint8 *src = GET_LINE (inframe, 0, j); in gst_comb_detect_transform_frame() 235 guint8 *dest = GET_LINE (outframe, 0, j); in gst_comb_detect_transform_frame() 236 guint8 *src1 = GET_LINE (inframe, 0, j - 1); in gst_comb_detect_transform_frame() 237 guint8 *src2 = GET_LINE (inframe, 0, j); in gst_comb_detect_transform_frame() 238 guint8 *src3 = GET_LINE (inframe, 0, j + 1); in gst_comb_detect_transform_frame()
|
D | gstivtc.c | 333 #define GET_LINE(frame,comp,line) (((unsigned char *)(frame)->data[k]) + \ macro 361 guint8 *dest = GET_LINE (dest_frame, k, j); in reconstruct() 402 memcpy (GET_LINE (dest_frame, k, j), in reconstruct_single() 403 GET_LINE (&field->frame, k, j), width); in reconstruct_single() 406 memcpy (GET_LINE (dest_frame, k, j), in reconstruct_single() 407 GET_LINE (&field->frame, k, (j ^ 1)), width); in reconstruct_single() 409 guint8 *dest = GET_LINE (dest_frame, k, j); in reconstruct_single() 410 guint8 *line1 = GET_LINE (&field->frame, k, j - 1); in reconstruct_single() 411 guint8 *line2 = GET_LINE (&field->frame, k, j + 1); in reconstruct_single() 472 memcpy (GET_LINE (dest_frame, k, j), in reconstruct_single() [all …]
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/ |
D | video-format.c | 59 #define GET_LINE(line) GET_PLANE_LINE (0, line) macro 158 const guint8 *restrict s = GET_LINE (y); in unpack_YUY2() 205 guint8 *restrict d = GET_LINE (y); in pack_YUY2() 235 const guint8 *s = GET_LINE (y); in unpack_UYVY() 282 guint8 *restrict d = GET_LINE (y); in pack_UYVY() 311 const guint8 *s = GET_LINE (y); in unpack_VYUY() 358 guint8 *restrict d = GET_LINE (y); in pack_VYUY() 387 const guint8 *restrict s = GET_LINE (y); in unpack_YVYU() 434 guint8 *restrict d = GET_LINE (y); in pack_YVYU() 465 const guint8 *restrict s = GET_LINE (y); in unpack_v308() [all …]
|
/third_party/gstreamer/gstplugins_base/tests/check/libs/ |
D | video.c | 2313 #define GET_LINE(l) (pixels + CLAMP (l, 0, HEIGHT-1) * WIDTH * 4) macro 2341 lines[j] = GET_LINE (offset + j); in GST_START_TEST() 2349 lines[j] = GET_LINE (i + offset + j); in GST_START_TEST() 2370 lines[j] = GET_LINE (offset + j); in GST_START_TEST() 2378 lines[j] = GET_LINE (i + offset + j); in GST_START_TEST()
|
/third_party/gstreamer/gstplugins_base/gst/videoscale/ |
D | gstvideoscale.c | 1172 #define GET_LINE(frame, line) \ macro
|