Home
last modified time | relevance | path

Searched refs:srcrow (Results 1 – 5 of 5) sorted by relevance

/third_party/ffmpeg/libavfilter/
Dvf_colorlevels.c91 const uint8_t *srcrow[4]; member
113 const type *src_r = (const type *)(td->srcrow[R]) + src_linesize * slice_start; \
114 const type *src_g = (const type *)(td->srcrow[G]) + src_linesize * slice_start; \
115 const type *src_b = (const type *)(td->srcrow[B]) + src_linesize * slice_start; \
116 const type *src_a = (const type *)(td->srcrow[A]) + src_linesize * slice_start; \
382 td.srcrow[R] = in->data[2]; in filter_frame()
384 td.srcrow[G] = in->data[0]; in filter_frame()
386 td.srcrow[B] = in->data[1]; in filter_frame()
388 td.srcrow[A] = in->data[3]; in filter_frame()
391 td.srcrow[R] = in->data[0] + s->rgba_map[R] * s->bpp; in filter_frame()
[all …]
Dvf_colorbalance.c267 const uint8_t *srcrow = in->data[0] + slice_start * in->linesize[0]; in color_balance8() local
279 const uint8_t *src = srcrow; in color_balance8()
302 srcrow += in->linesize[0]; in color_balance8()
318 const uint16_t *srcrow = (const uint16_t *)in->data[0] + slice_start * in->linesize[0] / 2; in color_balance16() local
331 const uint16_t *src = srcrow; in color_balance16()
354 srcrow += in->linesize[0] / 2; in color_balance16()
Dcolorchannelmixer_template.c181 const uint8_t *srcrow = in->data[0] + slice_start * in->linesize[0]; in fn() local
186 const pixel *src = (const pixel *)srcrow; in fn()
236 srcrow += in->linesize[0]; in fn()
Dvf_lut3d.c505 … const uint8_t *srcrow = in ->data[0] + slice_start * in ->linesize[0]; \
514 … const uint##nbits##_t *src = (const uint##nbits##_t *)srcrow; \
531srcrow += in ->linesize[0]; \
2042 const uint8_t *srcrow = in ->data[0] + slice_start * in ->linesize[0]; \
2050 const uint##nbits##_t *src = (const uint##nbits##_t *)srcrow; \
2065 srcrow += in ->linesize[0]; \
/third_party/mesa3d/src/mesa/main/
Dimage.c879 const uint8_t *srcrow; in _mesa_swap_bytes_2d_image() local
883 srcrow = src; in _mesa_swap_bytes_2d_image()
886 swap2_copy((GLushort *)dstrow, (GLushort *)srcrow, width * swapsPerPixel); in _mesa_swap_bytes_2d_image()
888 swap4_copy((GLuint *)dstrow, (GLuint *)srcrow, width * swapsPerPixel); in _mesa_swap_bytes_2d_image()
890 srcrow += stride; in _mesa_swap_bytes_2d_image()