Home
last modified time | relevance | path

Searched refs:pixel_stride (Results 1 – 21 of 21) sorted by relevance

/third_party/gstreamer/gstplugins_bad/gst/videosignal/
Dgstsimplevideomark.c324 gint width, gint height, gint row_stride, gint pixel_stride, guint8 color) in gst_video_mark_draw_box() argument
330 data[pixel_stride * j] = color; in gst_video_mark_draw_box()
350 gint i, pw, ph, row_stride, pixel_stride; in gst_video_mark_yuv() local
363 pixel_stride = GST_VIDEO_FRAME_COMP_PSTRIDE (frame, 0); in gst_video_mark_yuv()
368 pixel_stride * simplevideomark->left_offset; in gst_video_mark_yuv()
417 pixel_stride, color); in gst_video_mark_yuv()
420 d += pixel_stride * draw_pw; in gst_video_mark_yuv()
446 pixel_stride, color); in gst_video_mark_yuv()
451 d += pixel_stride * draw_pw; in gst_video_mark_yuv()
Dgstsimplevideomarkdetect.c394 gint row_stride, gint pixel_stride) in gst_video_detect_calc_brightness() argument
402 sum += data[pixel_stride * j]; in gst_video_detect_calc_brightness()
425 gint i, pw, ph, row_stride, pixel_stride; in gst_video_detect_yuv() local
437 pixel_stride = GST_VIDEO_FRAME_COMP_PSTRIDE (frame, 0); in gst_video_detect_yuv()
443 pixel_stride * simplevideomarkdetect->left_offset; in gst_video_detect_yuv()
480 row_stride, pixel_stride); in gst_video_detect_yuv()
508 d += pixel_stride * draw_pw; in gst_video_detect_yuv()
524 row_stride, pixel_stride); in gst_video_detect_yuv()
538 d += pixel_stride * draw_pw; in gst_video_detect_yuv()
/third_party/gstreamer/gstplugins_good/gst/videofilter/
Dgstgamma.c244 gint pixel_stride; in gst_gamma_packed_yuv_ip() local
252 pixel_stride = GST_VIDEO_FRAME_COMP_PSTRIDE (frame, 0); in gst_gamma_packed_yuv_ip()
253 row_wrap = stride - pixel_stride * width; in gst_gamma_packed_yuv_ip()
258 data += pixel_stride; in gst_gamma_packed_yuv_ip()
283 gint pixel_stride; in gst_gamma_packed_rgb_ip() local
299 pixel_stride = GST_VIDEO_FRAME_COMP_PSTRIDE (frame, 0); in gst_gamma_packed_rgb_ip()
300 row_wrap = stride - pixel_stride * width; in gst_gamma_packed_rgb_ip()
320 data += pixel_stride; in gst_gamma_packed_rgb_ip()
Dgstvideobalance.c362 gint pixel_stride; in gst_video_balance_packed_rgb() local
382 pixel_stride = GST_VIDEO_FRAME_COMP_PSTRIDE (frame, 0); in gst_video_balance_packed_rgb()
383 row_wrap = stride - pixel_stride * width; in gst_video_balance_packed_rgb()
410 data += pixel_stride; in gst_video_balance_packed_rgb()
/third_party/gstreamer/gstplugins_bad/gst/coloreffects/
Dgstcoloreffects.c309 gint pixel_stride, row_stride, row_wrap; in gst_color_effects_transform_rgb() local
324 pixel_stride = GST_VIDEO_FRAME_COMP_PSTRIDE (frame, 0); in gst_color_effects_transform_rgb()
325 row_wrap = row_stride - pixel_stride * width; in gst_color_effects_transform_rgb()
355 data += pixel_stride; in gst_color_effects_transform_rgb()
367 gint pixel_stride, row_stride, row_wrap; in gst_color_effects_transform_ayuv() local
382 pixel_stride = GST_VIDEO_FRAME_COMP_PSTRIDE (frame, 0); in gst_color_effects_transform_ayuv()
383 row_wrap = row_stride - pixel_stride * width; in gst_color_effects_transform_ayuv()
431 data += pixel_stride; in gst_color_effects_transform_ayuv()
/third_party/gstreamer/gstplugins_bad/gst/videofilters/
Dgstzebrastripe.c215 int pixel_stride = 0, y_position = 0; in gst_zebra_stripe_transform_frame_ip() local
219 pixel_stride = GST_VIDEO_FORMAT_INFO_PSTRIDE (frame->info.finfo, 0); in gst_zebra_stripe_transform_frame_ip()
245 if (data[pixel_stride * i + y_position] >= threshold) { in gst_zebra_stripe_transform_frame_ip()
247 data[pixel_stride * i + y_position] = 16; in gst_zebra_stripe_transform_frame_ip()
/third_party/gstreamer/gstplugins_bad/gst/dvbsubenc/
Dgstdvbsubenc.c224 find_largest_subregion (guint8 * pixels, guint stride, guint pixel_stride, in find_largest_subregion() argument
235 guint8 *r = p + (width - 1) * pixel_stride; in find_largest_subregion()
248 l += pixel_stride; in find_largest_subregion()
249 r -= pixel_stride; in find_largest_subregion()
330 guint pixel_stride = GST_VIDEO_FRAME_COMP_PSTRIDE (vframe, 0); in process_largest_subregion() local
338 find_largest_subregion (pixels, stride, pixel_stride, enc->in_info.width, in process_largest_subregion()
/third_party/gstreamer/gstplugins_bad/gst/geometrictransform/
Dgstgeometrictransform.c149 gt->pixel_stride = GST_VIDEO_INFO_COMP_PSTRIDE (in_info, 0); in gst_geometric_transform_set_info()
174 out_offset = y * gt->row_stride + x * gt->pixel_stride; in gst_geometric_transform_do_map()
202 in_offset = trunc_y * gt->row_stride + trunc_x * gt->pixel_stride; in gst_geometric_transform_do_map()
204 memcpy (out_data + out_offset, in_data + in_offset, gt->pixel_stride); in gst_geometric_transform_do_map()
Dgstgeometrictransform.h90 gint pixel_stride; member
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/vulkan/
Dgstvkformat.h115 gint8 pixel_stride[GST_VULKAN_MAX_COMPONENTS]; member
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/
Dvideo-format.h573 gint pixel_stride[GST_VIDEO_MAX_COMPONENTS]; member
624 #define GST_VIDEO_FORMAT_INFO_PSTRIDE(info,c) ((info)->pixel_stride[c])
/third_party/gstreamer/gstplugins_good/ext/libcaca/
Dgstcacatv.c141 bpp = 8 * info.finfo->pixel_stride[0]; in gst_cacatv_setcaps()
152 bpp = 8 * info.finfo->pixel_stride[0]; in gst_cacatv_setcaps()
Dgstcacasink.c191 bpp = 8 * info.finfo->pixel_stride[0]; in gst_cacasink_setcaps()
/third_party/ffmpeg/libavcodec/
Dffv1dec.c120 int pixel_stride) in decode_plane() argument
145 src[x*pixel_stride + stride * y] = sample[1][x]; in decode_plane()
152 ((uint16_t*)(src + stride*y))[x*pixel_stride] = sample[1][x]; in decode_plane()
156 …((uint16_t*)(src + stride*y))[x*pixel_stride] = sample[1][x] << (16 - s->avctx->bits_per_raw_sampl… in decode_plane()
Dffv1enc.c274 int stride, int plane_index, int pixel_stride) in encode_plane() argument
291 sample[0][x] = src[x * pixel_stride + stride * y]; in encode_plane()
/third_party/gstreamer/gstplugins_base/ext/libvisual/
Dvisual.c166 depth = bscope->vinfo.finfo->pixel_stride[0]; in gst_visual_setup()
/third_party/gstreamer/gstplugins_bad/ext/qroverlay/
Dgstbaseqroverlay.c157 pstride = info.finfo->pixel_stride[0]; in draw_overlay()
/third_party/gstreamer/gstplugins_good/gst/videobox/
Dgstvideobox.c2195 gint pixel_stride, row_size; in copy_packed_simple() local
2200 pixel_stride = GST_VIDEO_FRAME_COMP_PSTRIDE (dest_frame, 0); in copy_packed_simple()
2201 row_size = w * pixel_stride; in copy_packed_simple()
2204 dest = dest + dest_y * dest_stride + dest_x * pixel_stride; in copy_packed_simple()
2206 src = src + src_y * src_stride + src_x * pixel_stride; in copy_packed_simple()
/third_party/gstreamer/gstplugins_base/ext/pango/
Dgstbasetextoverlay.c2054 guint dest_stride, pixel_stride; in gst_base_text_overlay_shade_packed_Y() local
2059 pixel_stride = GST_VIDEO_FRAME_COMP_PSTRIDE (dest, 0); in gst_base_text_overlay_shade_packed_Y()
2076 y_pos = (i * dest_stride) + j * pixel_stride; in gst_base_text_overlay_shade_packed_Y()
/third_party/flutter/skia/third_party/externals/libwebp/src/dec/
Dvp8l_dec.c715 uint8_t** const in_data, int pixel_stride) { in SetCropWindow() argument
724 *in_data += delta * pixel_stride; in SetCropWindow()
/third_party/skia/third_party/externals/libwebp/src/dec/
Dvp8l_dec.c719 uint8_t** const in_data, int pixel_stride) { in SetCropWindow() argument
728 *in_data += delta * pixel_stride; in SetCropWindow()