/third_party/ffmpeg/libswscale/ |
D | input.c | 59 rgb64ToUV_c_template(uint16_t *dstU, uint16_t *dstV, in rgb64ToUV_c_template() argument 72 dstU[i] = (ru*r + gu*g + bu*b + (0x10001<<(RGB2YUV_SHIFT-1))) >> RGB2YUV_SHIFT; in rgb64ToUV_c_template() 78 rgb64ToUV_half_c_template(uint16_t *dstU, uint16_t *dstV, in rgb64ToUV_half_c_template() argument 91 dstU[i]= (ru*r + gu*g + bu*b + (0x10001<<(RGB2YUV_SHIFT-1))) >> RGB2YUV_SHIFT; in rgb64ToUV_half_c_template() 111 uint16_t *dstU = (uint16_t *) _dstU, *dstV = (uint16_t *) _dstV; \ 112 rgb64ToUV_c_template(dstU, dstV, src1, src2, width, origin, rgb2yuv); \ 121 uint16_t *dstU = (uint16_t *) _dstU, *dstV = (uint16_t *) _dstV; \ 122 rgb64ToUV_half_c_template(dstU, dstV, src1, src2, width, origin, rgb2yuv); \ 146 static av_always_inline void rgb48ToUV_c_template(uint16_t *dstU, in rgb48ToUV_c_template() argument 163 dstU[i] = (ru*r + gu*g + bu*b + (0x10001 << (RGB2YUV_SHIFT - 1))) >> RGB2YUV_SHIFT; in rgb48ToUV_c_template() [all …]
|
D | bayer_template.c | 190 #define rgb24toyv12_2x2(src, dstY, dstU, dstV, luma_stride, src_stride, rgb2yuv) \ argument 191 ff_rgb24toyv12(src, dstY, dstV, dstU, 2, 2, luma_stride, 0, src_stride, rgb2yuv) 256 …ME(yv12_copy)(const uint8_t *src, int src_stride, uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, int… in BAYER_RENAME() 263 rgb24toyv12_2x2(dst, dstY, dstU, dstV, luma_stride, dst_stride, rgb2yuv); in BAYER_RENAME() 266 dstU++; in BAYER_RENAME() 271 …_interpolate)(const uint8_t *src, int src_stride, uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, int… in BAYER_RENAME() 278 rgb24toyv12_2x2(dst, dstY, dstU, dstV, luma_stride, dst_stride, rgb2yuv); in BAYER_RENAME() 281 dstU++; in BAYER_RENAME() 286 rgb24toyv12_2x2(dst, dstY, dstU, dstV, luma_stride, dst_stride, rgb2yuv); in BAYER_RENAME() 289 dstU++; in BAYER_RENAME() [all …]
|
D | swscale.c | 161 static void chrRangeToJpeg_c(int16_t *dstU, int16_t *dstV, int width) in chrRangeToJpeg_c() argument 165 dstU[i] = (FFMIN(dstU[i], 30775) * 4663 - 9289992) >> 12; // -264 in chrRangeToJpeg_c() 170 static void chrRangeFromJpeg_c(int16_t *dstU, int16_t *dstV, int width) in chrRangeFromJpeg_c() argument 174 dstU[i] = (dstU[i] * 1799 + 4081085) >> 11; // 1469 in chrRangeFromJpeg_c() 196 int32_t *dstU = (int32_t *) _dstU; in chrRangeToJpeg16_c() local 199 dstU[i] = (FFMIN(dstU[i], 30775 << 4) * 4663 - (9289992 << 4)) >> 12; // -264 in chrRangeToJpeg16_c() 207 int32_t *dstU = (int32_t *) _dstU; in chrRangeFromJpeg16_c() local 210 dstU[i] = (dstU[i] * 1799 + (4081085 << 4)) >> 11; // 1469 in chrRangeFromJpeg16_c()
|
D | swscale_unscaled.c | 1384 uint8_t *dstU= dst[1] + srcSliceY * dstStride[1] / 2; in bayer_to_yv12_wrapper() local 1387 …void (*copy) (const uint8_t *src, int src_stride, uint8_t *dstY, uint8_t *dstU, uint8_t *dst… in bayer_to_yv12_wrapper() 1388 …void (*interpolate)(const uint8_t *src, int src_stride, uint8_t *dstY, uint8_t *dstU, uint8_t *dst… in bayer_to_yv12_wrapper() 1413 copy(srcPtr, srcStride[0], dstY, dstU, dstV, dstStride[0], c->srcW, c->input_rgb2yuv_table); in bayer_to_yv12_wrapper() 1416 dstU += dstStride[1]; in bayer_to_yv12_wrapper() 1420 …interpolate(srcPtr, srcStride[0], dstY, dstU, dstV, dstStride[0], c->srcW, c->input_rgb2yuv_table); in bayer_to_yv12_wrapper() 1423 dstU += dstStride[1]; in bayer_to_yv12_wrapper() 1428 … copy(srcPtr, -srcStride[0], dstY, dstU, dstV, -dstStride[0], c->srcW, c->input_rgb2yuv_table); in bayer_to_yv12_wrapper() 1430 copy(srcPtr, srcStride[0], dstY, dstU, dstV, dstStride[0], c->srcW, c->input_rgb2yuv_table); in bayer_to_yv12_wrapper()
|
D | swscale_internal.h | 537 void (*chrToYV12)(uint8_t *dstU, uint8_t *dstV, 547 void (*readChrPlanar)(uint8_t *dstU, uint8_t *dstV, const uint8_t *src[4],
|
/third_party/ffmpeg/libavcodec/ |
D | vp8dsp.h | 52 void (*vp8_v_loop_filter8uv)(uint8_t *dstU, uint8_t *dstV, ptrdiff_t stride, 54 void (*vp8_h_loop_filter8uv)(uint8_t *dstU, uint8_t *dstV, ptrdiff_t stride, 62 void (*vp8_v_loop_filter8uv_inner)(uint8_t *dstU, uint8_t *dstV, 65 void (*vp8_h_loop_filter8uv_inner)(uint8_t *dstU, uint8_t *dstV,
|
D | escape130.c | 200 uint8_t *dstY, *dstU, *dstV; in escape130_decode_frame() local 317 dstU = pic->data[1]; in escape130_decode_frame() 327 dstU[i] = chroma_vals[new_cb[i]]; in escape130_decode_frame() 330 dstU += pic->linesize[1]; in escape130_decode_frame()
|
D | vp8dsp.c | 410 static void vpn ## _ ## dir ## _loop_filter8uv_c(uint8_t *dstU, \ 415 vpn ## _ ## dir ## _loop_filter8_c(dstU, stride, fE, fI, hev_thresh); \ 419 static void vpn ## _ ## dir ## _loop_filter8uv_inner_c(uint8_t *dstU, \ 425 vpn ## _ ## dir ## _loop_filter8_inner_c(dstU, stride, fE, fI, \
|
/third_party/ffmpeg/libavcodec/mips/ |
D | vp8dsp_mips.h | 271 void ff_vp8_v_loop_filter8uv_mmi(uint8_t *dstU, uint8_t *dstV, ptrdiff_t stride, 273 void ff_vp8_h_loop_filter8uv_mmi(uint8_t *dstU, uint8_t *dstV, ptrdiff_t stride, 281 void ff_vp8_v_loop_filter8uv_inner_mmi(uint8_t *dstU, uint8_t *dstV, 283 void ff_vp8_h_loop_filter8uv_inner_mmi(uint8_t *dstU, uint8_t *dstV,
|
D | vp8dsp_mmi.c | 1386 void ff_vp8_v_loop_filter8uv_mmi(uint8_t *dstU, uint8_t *dstV, ptrdiff_t stride, in ff_vp8_v_loop_filter8uv_mmi() argument 1389 vp8_v_loop_filter8_mmi(dstU, stride, flim_E, flim_I, hev_thresh); in ff_vp8_v_loop_filter8uv_mmi() 1393 void ff_vp8_h_loop_filter8uv_mmi(uint8_t *dstU, uint8_t *dstV, ptrdiff_t stride, in ff_vp8_h_loop_filter8uv_mmi() argument 1396 vp8_h_loop_filter8_mmi(dstU, stride, flim_E, flim_I, hev_thresh); in ff_vp8_h_loop_filter8uv_mmi() 1431 void ff_vp8_v_loop_filter8uv_inner_mmi(uint8_t *dstU, uint8_t *dstV, in ff_vp8_v_loop_filter8uv_inner_mmi() argument 1434 vp8_v_loop_filter8_inner_mmi(dstU, stride, flim_E, flim_I, hev_thresh); in ff_vp8_v_loop_filter8uv_inner_mmi() 1438 void ff_vp8_h_loop_filter8uv_inner_mmi(uint8_t *dstU, uint8_t *dstV, in ff_vp8_h_loop_filter8uv_inner_mmi() argument 1441 vp8_h_loop_filter8_inner_mmi(dstU, stride, flim_E, flim_I, hev_thresh); in ff_vp8_h_loop_filter8uv_inner_mmi()
|
/third_party/ffmpeg/libavcodec/x86/ |
D | vp8dsp_init.c | 265 void ff_vp8_v_loop_filter8uv_inner_ ## NAME (uint8_t *dstU, \ 269 void ff_vp8_h_loop_filter8uv_inner_ ## NAME (uint8_t *dstU, \ 279 void ff_vp8_v_loop_filter8uv_mbedge_ ## NAME(uint8_t *dstU, \ 283 void ff_vp8_h_loop_filter8uv_mbedge_ ## NAME(uint8_t *dstU, \
|
/third_party/ffmpeg/libavcodec/aarch64/ |
D | vp8dsp.h | 31 void ff_vp8_##hv##_loop_filter8uv##inner##_##opt(uint8_t *dstU, \
|
/third_party/ffmpeg/libswscale/x86/ |
D | input.asm | 104 ; void <fmt>toUV_<opt>(uint8_t *dstU, uint8_t *dstV, const uint8_t *src, 200 cglobal %2 %+ 24ToUV, 7, 7, %1, dstU, dstV, u1, src, u2, w, table 401 cglobal %2%3%4%5 %+ ToUV, 7, 7, %1, dstU, dstV, u1, src, u2, w, table 532 ; void <fmt>toUV_<opt>(uint8_t *dstU, uint8_t *dstV, const uint8_t *src, 632 cglobal %2ToUV, 4, 5, %1, dstU, dstV, unused, src, w 687 cglobal %2ToUV, 4, 5, %1, dstU, dstV, unused, src, w
|
D | swscale.c | 317 void ff_ ## fmt ## ToUV_ ## opt(uint8_t *dstU, uint8_t *dstV, \
|
D | rgb2rgb_template.c | 1903 void RENAME(ff_nv12ToUV)(uint8_t *dstU, uint8_t *dstV,
|
/third_party/ffmpeg/libavcodec/arm/ |
D | vp8dsp.h | 36 void ff_vp8_##hv##_loop_filter8uv##inner##_##opt(uint8_t *dstU, \
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuAstcUtil.cpp | 460 deUint8* const dstU = (deUint8*)dst; in setASTCErrorColorBlock() local 464 dstU[4*i + 0] = 0xff; in setASTCErrorColorBlock() 465 dstU[4*i + 1] = 0; in setASTCErrorColorBlock() 466 dstU[4*i + 2] = 0xff; in setASTCErrorColorBlock() 467 dstU[4*i + 3] = 0xff; in setASTCErrorColorBlock() 509 deUint8* const dstU = (deUint8*)dst; in decodeVoidExtentBlock() local 512 dstU[i*4 + c] = (deUint8)((rgba[c] & 0xff00) >> 8); in decodeVoidExtentBlock()
|
/third_party/gstreamer/gstplugins_bad/sys/nvcodec/ |
D | cuda-converter.c | 1253 CUdeviceptr dstU, gint u_stride, CUdeviceptr dstV, gint v_stride, in convert_TO_Y444() argument 1258 gpointer kernel_args[] = { &srcRGB, &dstY, &y_stride, &dstU, &u_stride, &dstV, in convert_TO_Y444()
|