/third_party/ffmpeg/libswscale/ |
D | input.c | 59 rgb64ToUV_c_template(uint16_t *dstU, uint16_t *dstV, in rgb64ToUV_c_template() argument 73 dstV[i] = (rv*r + gv*g + bv*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 92 dstV[i]= (rv*r + gv*g + bv*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); \ 147 uint16_t *dstV, in rgb48ToUV_c_template() argument 164 dstV[i] = (rv*r + gv*g + bv*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 …onst uint8_t *src, int src_stride, uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, int luma_stride, i… in BAYER_RENAME() 263 rgb24toyv12_2x2(dst, dstY, dstU, dstV, luma_stride, dst_stride, rgb2yuv); in BAYER_RENAME() 267 dstV++; in BAYER_RENAME() 271 …onst uint8_t *src, int src_stride, uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, int luma_stride, i… in BAYER_RENAME() 278 rgb24toyv12_2x2(dst, dstY, dstU, dstV, luma_stride, dst_stride, rgb2yuv); in BAYER_RENAME() 282 dstV++; in BAYER_RENAME() 286 rgb24toyv12_2x2(dst, dstY, dstU, dstV, luma_stride, dst_stride, rgb2yuv); in BAYER_RENAME() 290 dstV++; in BAYER_RENAME() [all …]
|
D | swscale.c | 161 static void chrRangeToJpeg_c(int16_t *dstU, int16_t *dstV, int width) in chrRangeToJpeg_c() argument 166 dstV[i] = (FFMIN(dstV[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 175 dstV[i] = (dstV[i] * 1799 + 4081085) >> 11; // 1469 in chrRangeFromJpeg_c() 197 int32_t *dstV = (int32_t *) _dstV; in chrRangeToJpeg16_c() local 200 dstV[i] = (FFMIN(dstV[i], 30775 << 4) * 4663 - (9289992 << 4)) >> 12; // -264 in chrRangeToJpeg16_c() 208 int32_t *dstV = (int32_t *) _dstV; in chrRangeFromJpeg16_c() local 211 dstV[i] = (dstV[i] * 1799 + (4081085 << 4)) >> 11; // 1469 in chrRangeFromJpeg16_c()
|
D | swscale_unscaled.c | 1385 uint8_t *dstV= dst[2] + srcSliceY * dstStride[2] / 2; in bayer_to_yv12_wrapper() local 1387 …onst uint8_t *src, int src_stride, uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, int luma_stride, i… in bayer_to_yv12_wrapper() 1388 …onst uint8_t *src, int src_stride, uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, int luma_stride, i… 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() 1417 dstV += 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() 1424 dstV += 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 318 dstV = pic->data[2]; in escape130_decode_frame() 328 dstV[i] = chroma_vals[new_cr[i]]; in escape130_decode_frame() 331 dstV += pic->linesize[2]; in escape130_decode_frame()
|
D | vp8dsp.c | 411 uint8_t *dstV, \ 416 vpn ## _ ## dir ## _loop_filter8_c(dstV, stride, fE, fI, hev_thresh); \ 420 uint8_t *dstV, \ 427 vpn ## _ ## dir ## _loop_filter8_inner_c(dstV, 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 1390 vp8_v_loop_filter8_mmi(dstV, 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 1397 vp8_h_loop_filter8_mmi(dstV, 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 1435 vp8_v_loop_filter8_inner_mmi(dstV, 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 1442 vp8_h_loop_filter8_inner_mmi(dstV, stride, flim_E, flim_I, hev_thresh); in ff_vp8_h_loop_filter8uv_inner_mmi()
|
/third_party/ffmpeg/libavcodec/x86/ |
D | vp8dsp_init.c | 266 uint8_t *dstV, \ 270 uint8_t *dstV, \ 280 uint8_t *dstV, \ 284 uint8_t *dstV, \
|
/third_party/ffmpeg/libavcodec/ppc/ |
D | me_cmp.c | 434 register vector signed short dstV = \ in hadamard8_diff8x8_altivec() 439 register vector signed short but0 = vec_sub(srcV, dstV); \ in hadamard8_diff8x8_altivec() 581 register vector signed short dstV __asm__ ("v25") = \ in hadamard8_diff16x8_altivec() 593 vec_sub(srcV, dstV); \ in hadamard8_diff16x8_altivec()
|
/third_party/ffmpeg/libavcodec/aarch64/ |
D | vp8dsp.h | 32 uint8_t *dstV, \
|
/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 | 37 uint8_t *dstV, \
|
/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()
|