Home
last modified time | relevance | path

Searched refs:rowstride (Results 1 – 16 of 16) sorted by relevance

/third_party/mesa3d/src/mesa/main/
Dtexcompress_bptc.c130 int rowstride; in _mesa_texstore_bptc_rgba_unorm() local
156 rowstride = srcWidth * 4; in _mesa_texstore_bptc_rgba_unorm()
160 rowstride = _mesa_image_row_stride(srcPacking, srcWidth, in _mesa_texstore_bptc_rgba_unorm()
165 pixels, rowstride, in _mesa_texstore_bptc_rgba_unorm()
179 int rowstride; in texstore_bptc_rgb_float() local
201 rowstride = srcWidth * sizeof(float) * 3; in texstore_bptc_rgb_float()
205 rowstride = _mesa_image_row_stride(srcPacking, srcWidth, in texstore_bptc_rgb_float()
210 pixels, rowstride, in texstore_bptc_rgb_float()
Dtexgetimage.c141 GLint rowstride; in get_tex_depth_stencil() local
146 GL_MAP_READ_BIT, &srcMap, &rowstride); in get_tex_depth_stencil()
150 const GLubyte *src = srcMap + row * rowstride; in get_tex_depth_stencil()
197 GLint rowstride; in get_tex_stencil() local
203 &srcMap, &rowstride); in get_tex_stencil()
207 const GLubyte *src = srcMap + row * rowstride; in get_tex_stencil()
241 GLint rowstride; in get_tex_ycbcr() local
246 GL_MAP_READ_BIT, &srcMap, &rowstride); in get_tex_ycbcr()
250 const GLubyte *src = srcMap + row * rowstride; in get_tex_ycbcr()
470 GLint rowstride; in get_tex_rgba_uncompressed() local
[all …]
/third_party/gstreamer/gstplugins_base/gst/compositor/
Dblend.c418 gint rowstride, comp_yoffset; \
425 rowstride = GST_VIDEO_FRAME_COMP_STRIDE (frame, 0); \
427 p += comp_yoffset * rowstride; \
433 p += rowstride - comp_width; \
439 rowstride = GST_VIDEO_FRAME_COMP_STRIDE (frame, 1); \
441 p += comp_yoffset * rowstride; \
445 p += rowstride; \
451 rowstride = GST_VIDEO_FRAME_COMP_STRIDE (frame, 2); \
453 p += comp_yoffset * rowstride; \
457 p += rowstride; \
[all …]
/third_party/gstreamer/gstplugins_good/gst/videomixer/
Dblend.c351 gint rowstride; \
356 rowstride = GST_VIDEO_FRAME_COMP_STRIDE (frame, 0); \
362 p += rowstride - comp_width; \
368 rowstride = GST_VIDEO_FRAME_COMP_STRIDE (frame, 1); \
372 p += rowstride; \
378 rowstride = GST_VIDEO_FRAME_COMP_STRIDE (frame, 2); \
382 p += rowstride; \
393 gint rowstride; \
399 rowstride = GST_VIDEO_FRAME_COMP_STRIDE (frame, 0); \
403 p += rowstride; \
[all …]
/third_party/ffmpeg/libavcodec/
Drpzaenc.c81 int rowstride; member
134 return block ? (bi->col * 4) + (bi->row * bi->rowstride * 4) : 0; in get_block_info()
217 block_ptr += bi->rowstride; in get_max_component_diff()
254 block1 += bi->rowstride; in compare_blocks()
255 block2 += bi->rowstride; in compare_blocks()
288 block_ptr += bi->rowstride; in leastsquares()
349 block_ptr += bi->rowstride; in calc_lsq_max_fit_error()
409 block_ptr += bi->rowstride; in encode_four_color_block()
425 dest_pixels += bi->rowstride; in update_block_in_prev_frame()
426 src_pixels += bi->rowstride; in update_block_in_prev_frame()
[all …]
/third_party/gstreamer/gstplugins_good/tests/check/elements/
Dalphacolor.c108 guint rowstride = GST_ROUND_UP_4 (WIDTH * 3); in create_buffer_rgb24_3x4() local
112 buf = gst_buffer_new_and_alloc (HEIGHT * rowstride); in create_buffer_rgb24_3x4()
137 guint rowstride = WIDTH * 4; in create_buffer_rgba32_3x4() local
141 buf = gst_buffer_new_and_alloc (HEIGHT * rowstride); in create_buffer_rgba32_3x4()
/third_party/gstreamer/gstplugins_bad/gst/dvbsuboverlay/
Ddvb-sub.h47 int rowstride; member
Ddvb-sub.c1234 rect->pict.rowstride = region->width; in _dvb_sub_parse_end_of_display_set()
Dgstdvbsuboverlay.c959 stride = srect->pict.rowstride; in gst_dvbsub_overlay_subs_to_comp()
/third_party/mesa3d/src/gallium/drivers/svga/include/
Dsvga3d_surfacedefs.h1373 const uint32 rowstride = DIV_ROUND_UP(width, bw) * desc->bytes_per_block; in svga3dsurface_get_pixel_offset() local
1374 const uint32 imgstride = DIV_ROUND_UP(height, bh) * rowstride; in svga3dsurface_get_pixel_offset()
1376 y / bh * rowstride + in svga3dsurface_get_pixel_offset()
/third_party/gstreamer/gstreamer/docs/random/ds/
D0.9-suggested-changes85 - Add rowstride as a property so that video frames don't have to have
86 rowstride == width. For example, gdkpixbufdec would prefer to pad
/third_party/gstreamer/gstreamer/docs/random/
DChangeLog-0.82755 Add the suggestion of including a 'rowstride' as part of video
/third_party/gstreamer/gstplugins_base/docs/random/
DChangeLog-0.87268 rowstride to a 32-bit word boundary.
/third_party/gstreamer/gstplugins_bad/docs/random/
DChangeLog-0.89439 rowstride to a 32-bit word boundary.
/third_party/gstreamer/gstplugins_bad/
DChangeLog191408 pnm: Use correct rowstride for 8 bit grayscale too
191414 pnm: Correctly convert from/to GStreamer rowstride
200950 videoanalyse: Fix brightness calculation to not only use the first rowstride
/third_party/gstreamer/gstplugins_good/
DChangeLog74924 gdk: cleanups and fix rowstride
74925 Fix the output rowstride, we need to take the stride of the output video frame.