Home
last modified time | relevance | path

Searched refs:rgb_stride (Results 1 - 11 of 11) sorted by relevance

/third_party/skia/third_party/externals/libwebp/src/enc/
H A Dpicture_csp_enc.c448 int step, int rgb_stride, in PreprocessARGB()
495 ImportOneRow(r_ptr + rgb_stride, g_ptr + rgb_stride, b_ptr + rgb_stride, in PreprocessARGB()
511 r_ptr += 2 * rgb_stride; in PreprocessARGB()
512 g_ptr += 2 * rgb_stride; in PreprocessARGB()
513 b_ptr += 2 * rgb_stride; in PreprocessARGB()
577 GammaToLinear((ptr)[rgb_stride]) + \
578 GammaToLinear((ptr)[rgb_stride + (step)]), 0) \
581 LinearToGamma(GammaToLinear((ptr)[0]) + GammaToLinear((ptr)[rgb_stride]),
445 PreprocessARGB(const uint8_t* r_ptr, const uint8_t* g_ptr, const uint8_t* b_ptr, int step, int rgb_stride, WebPPicture* const picture) PreprocessARGB() argument
738 LinearToGammaWeighted(const uint8_t* src, const uint8_t* a_ptr, uint32_t total_a, int step, int rgb_stride) LinearToGammaWeighted() argument
767 AccumulateRGBA(const uint8_t* const r_ptr, const uint8_t* const g_ptr, const uint8_t* const b_ptr, const uint8_t* const a_ptr, int rgb_stride, uint16_t* dst, int width) AccumulateRGBA() argument
811 AccumulateRGB(const uint8_t* const r_ptr, const uint8_t* const g_ptr, const uint8_t* const b_ptr, int step, int rgb_stride, uint16_t* dst, int width) AccumulateRGB() argument
842 ImportYUVAFromRGBA(const uint8_t* r_ptr, const uint8_t* g_ptr, const uint8_t* b_ptr, const uint8_t* a_ptr, int step, int rgb_stride, float dithering, int use_iterative_conversion, WebPPicture* const picture) ImportYUVAFromRGBA() argument
1098 Import(WebPPicture* const picture, const uint8_t* rgb, int rgb_stride, int step, int swap_rb, int import_alpha) Import() argument
1165 WebPPictureImportBGR(WebPPicture* picture, const uint8_t* rgb, int rgb_stride) WebPPictureImportBGR() argument
1189 WebPPictureImportRGB(WebPPicture* picture, const uint8_t* rgb, int rgb_stride) WebPPictureImportRGB() argument
[all...]
/third_party/ffmpeg/libavcodec/
H A Dmss12.c296 ptrdiff_t rgb_stride, PixContext *pctx, in decode_region()
301 rgb_stride = rgb_dst ? rgb_stride : 0; in decode_region()
302 rgb_dst = rgb_dst ? rgb_dst + x * 3 + y * rgb_stride : NULL; in decode_region()
320 rgb_dst = FF_PTR_ADD(rgb_dst, rgb_stride); in decode_region()
333 memcpy(c->rgb_pic + j * c->rgb_stride + x * 3, in copy_rectangles()
334 c->last_rgb_pic + j * c->rgb_stride + x * 3, in copy_rectangles()
351 uint8_t *rgb_dst = c->rgb_pic + x * 3 + y * c->rgb_stride; in motion_compensation()
359 rgb_src = c->last_rgb_pic + x * 3 + y * c->rgb_stride; in motion_compensation()
362 rgb_src = c->rgb_pic + x * 3 + y * c->rgb_stride; in motion_compensation()
294 decode_region(ArithCoder *acoder, uint8_t *dst, uint8_t *rgb_dst, int x, int y, int width, int height, ptrdiff_t stride, ptrdiff_t rgb_stride, PixContext *pctx, const uint32_t *pal) decode_region() argument
478 ptrdiff_t rgb_stride = c->rgb_stride; decode_region_intra() local
[all...]
H A Dmss2.c243 uint8_t *rgb_dst, ptrdiff_t rgb_stride, uint32_t *pal, in decode_rle()
268 rgb_dst += rgb_stride * y + x * 3; in decode_rle()
276 rgb_dst += rgb_stride * kf_slipt; in decode_rle()
366 memcpy(rp, rp - rgb_stride, 3); in decode_rle()
371 rgb_dst += rgb_stride; in decode_rle()
448 ctx->dsp.mss2_blit_wmv9_masked(c->rgb_pic + y * c->rgb_stride + x * 3, in decode_wmv9()
449 c->rgb_stride, wmv9_mask, in decode_wmv9()
456 ctx->dsp.mss2_blit_wmv9(c->rgb_pic + y * c->rgb_stride + x * 3, in decode_wmv9()
457 c->rgb_stride, in decode_wmv9()
628 c->rgb_stride in mss2_decode_frame()
242 decode_rle(GetBitContext *gb, uint8_t *pal_dst, ptrdiff_t pal_stride, uint8_t *rgb_dst, ptrdiff_t rgb_stride, uint32_t *pal, int keyframe, int kf_slipt, int slice, int w, int h) decode_rle() argument
[all...]
H A Dmss12.h87 ptrdiff_t rgb_stride; member
/third_party/ffmpeg/libavfilter/
H A Dcolorspacedsp.h27 typedef void (*yuv2rgb_fn)(int16_t *rgb[3], ptrdiff_t rgb_stride,
32 int16_t *rgb[3], ptrdiff_t rgb_stride,
36 int16_t *rgb[3], ptrdiff_t rgb_stride,
H A Dcolorspacedsp_template.c54 static void fn(yuv2rgb)(int16_t *rgb[3], ptrdiff_t rgb_stride, in yuv2rgb() argument
93 rgb0[2 * x + rgb_stride] = av_clip_int16((y10 * cy + crv * v + rnd) >> sh); in yuv2rgb()
94 rgb0[2 * x + rgb_stride + 1] = av_clip_int16((y11 * cy + crv * v + rnd) >> sh); in yuv2rgb()
104 rgb1[2 * x + rgb_stride] = av_clip_int16((y10 * cy + cgu * u + in yuv2rgb()
106 rgb1[2 * x + rgb_stride + 1] = av_clip_int16((y11 * cy + cgu * u + in yuv2rgb()
115 rgb2[2 * x + rgb_stride] = av_clip_int16((y10 * cy + cbu * u + rnd) >> sh); in yuv2rgb()
116 rgb2[2 * x + rgb_stride + 1] = av_clip_int16((y11 * cy + cbu * u + rnd) >> sh); in yuv2rgb()
124 rgb0 += rgb_stride * (1 << SS_H); in yuv2rgb()
125 rgb1 += rgb_stride * (1 << SS_H); in yuv2rgb()
126 rgb2 += rgb_stride * ( in yuv2rgb()
[all...]
H A Dvf_colorspace.c126 ptrdiff_t rgb_stride; member
313 rgb[0] = s->rgb[0] + s->rgb_stride * h1; in convert()
314 rgb[1] = s->rgb[1] + s->rgb_stride * h1; in convert()
315 rgb[2] = s->rgb[2] + s->rgb_stride * h1; in convert()
347 s->yuv2rgb(rgb, s->rgb_stride, in_data, td->in_linesize, w, h, in convert()
350 apply_lut(rgb, s->rgb_stride, w, h, s->lin_lut); in convert()
352 s->dsp.multiply3x3(rgb, s->rgb_stride, w, h, s->lrgb2lrgb_coeffs); in convert()
353 apply_lut(rgb, s->rgb_stride, w, h, s->delin_lut); in convert()
356 s->rgb2yuv_fsb(out_data, td->out_linesize, rgb, s->rgb_stride, w, h, in convert()
359 s->rgb2yuv(out_data, td->out_linesize, rgb, s->rgb_stride, in convert()
729 ptrdiff_t rgb_stride = FFALIGN(in->width * sizeof(int16_t), 32); filter_frame() local
[all...]
/third_party/ffmpeg/libavfilter/x86/
H A Dcolorspacedsp_init.c47 void ff_yuv2rgb_##t##_sse2(int16_t *rgb_out[3], ptrdiff_t rgb_stride, \
63 int16_t *rgb_in[3], ptrdiff_t rgb_stride, \
H A Dcolorspacedsp.asm383 ; void ff_yuv2rgb_420p8_sse2(int16_t *rgb[3], ptrdiff_t rgb_stride,
/third_party/ffmpeg/libswscale/tests/
H A Dswscale.c367 int rgb_stride[4] = { 4 * W, 0, 0, 0 }; in main() local
425 res = sws_scale(sws, rgb_src, rgb_stride, 0, H / 12, (uint8_t * const *) src, stride); in main()
/third_party/skia/third_party/externals/libwebp/src/webp/
H A Dencode.h462 // *rgb buffer should have a size of at least height * rgb_stride.
465 WebPPicture* picture, const uint8_t* rgb, int rgb_stride);

Completed in 11 milliseconds