/external/webrtc/webrtc/modules/video_processing/ |
D | video_denoiser.cc | 23 const uint8_t* y_src, in TrailingReduction() argument 30 const uint8_t* mb_src = y_src + (mb_row << 4) * stride_y + (mb_col << 4); in TrailingReduction() 88 const uint8_t* y_src = frame.buffer(kYPlane); in DenoiseFrame() local 95 const uint8_t* mb_src = y_src + (mb_row << 4) * stride_y + (mb_col << 4); in DenoiseFrame() 108 y_src, u_src, v_src, stride_y, stride_u, stride_v, mb_row, mb_col); in DenoiseFrame() 139 TrailingReduction(mb_rows, mb_cols, y_src, stride_y, y_dst); in DenoiseFrame()
|
D | video_denoiser.h | 27 const uint8_t* y_src,
|
/external/libaom/libaom/av1/encoder/x86/ |
D | temporal_filter_sse4.c | 329 const uint8_t *y_src, int y_src_stride, const uint8_t *y_pre, in av1_apply_temporal_filter_luma_16() argument 397 y_src += y_src_stride; in av1_apply_temporal_filter_luma_16() 471 y_src += y_src_stride; in av1_apply_temporal_filter_luma_16() 521 const uint8_t *y_src, int y_src_stride, const uint8_t *y_pre, in av1_apply_temporal_filter_luma() argument 545 y_src + blk_col, y_src_stride, y_pre + blk_col, y_pre_stride, in av1_apply_temporal_filter_luma() 554 y_src + blk_col, y_src_stride, y_pre + blk_col, y_pre_stride, in av1_apply_temporal_filter_luma() 569 y_src + blk_col, y_src_stride, y_pre + blk_col, y_pre_stride, in av1_apply_temporal_filter_luma() 584 y_src + blk_col, y_src_stride, y_pre + blk_col, y_pre_stride, in av1_apply_temporal_filter_luma() 602 y_src + blk_col, y_src_stride, y_pre + blk_col, y_pre_stride, in av1_apply_temporal_filter_luma() 614 y_src + blk_col, y_src_stride, y_pre + blk_col, y_pre_stride, in av1_apply_temporal_filter_luma() [all …]
|
D | highbd_temporal_filter_sse4.c | 194 const uint16_t *y_src, int y_src_stride, const uint16_t *y_pre, in av1_highbd_apply_temporal_filter_luma_8() argument 259 y_src += y_src_stride; in av1_highbd_apply_temporal_filter_luma_8() 323 y_src += y_src_stride; in av1_highbd_apply_temporal_filter_luma_8() 367 const uint16_t *y_src, int y_src_stride, const uint16_t *y_pre, in av1_highbd_apply_temporal_filter_luma() argument 387 y_src + blk_col, y_src_stride, y_pre + blk_col, y_pre_stride, in av1_highbd_apply_temporal_filter_luma() 402 y_src + blk_col, y_src_stride, y_pre + blk_col, y_pre_stride, in av1_highbd_apply_temporal_filter_luma() 420 y_src + blk_col, y_src_stride, y_pre + blk_col, y_pre_stride, in av1_highbd_apply_temporal_filter_luma() 432 y_src + blk_col, y_src_stride, y_pre + blk_col, y_pre_stride, in av1_highbd_apply_temporal_filter_luma() 494 const uint16_t *y_src, int y_src_stride, const uint16_t *y_pre, in av1_highbd_apply_temporal_filter_chroma_8() argument 579 y_src += y_src_stride * (1 + ss_y); in av1_highbd_apply_temporal_filter_chroma_8() [all …]
|
/external/libaom/libaom/test/ |
D | yuv_temporal_filter_test.cc | 28 const uint8_t *y_src, int y_src_stride, const uint8_t *y_pre, 211 void ApplyReferenceFilter(const PixelType *y_src, const PixelType *y_pre, in ApplyReferenceFilter() argument 240 y_src[row * y_src_stride + col] - y_pre[row * y_pre_stride + col]; in ApplyReferenceFilter() 382 void ApplyTestFilter(const PixelType *y_src, int y_src_stride, 403 const uint8_t *y_src, int y_src_stride, const uint8_t *y_pre, in ApplyTestFilter() argument 411 filter_func_(y_src, y_src_stride, y_pre, y_pre_stride, u_src, v_src, in ApplyTestFilter() 419 const uint16_t *y_src, int y_src_stride, const uint16_t *y_pre, in ApplyTestFilter() argument 427 CONVERT_TO_BYTEPTR(y_src), y_src_stride, CONVERT_TO_BYTEPTR(y_pre), in ApplyTestFilter() 443 DECLARE_ALIGNED(16, PixelType, y_src[MAX_WIDTH * MAX_HEIGHT]) = { 0 }; in CompareTestWithParam() 467 SetArray(y_src, width, height, y_stride, max_val); in CompareTestWithParam() [all …]
|
/external/libaom/libaom/av1/encoder/ |
D | hash_motion.c | 39 static void get_pixels_in_1D_char_array_by_block_2x2(uint8_t *y_src, int stride, in get_pixels_in_1D_char_array_by_block_2x2() argument 41 uint8_t *p_pel = y_src; in get_pixels_in_1D_char_array_by_block_2x2() 51 static void get_pixels_in_1D_short_array_by_block_2x2(uint16_t *y_src, in get_pixels_in_1D_short_array_by_block_2x2() argument 54 uint16_t *p_pel = y_src; in get_pixels_in_1D_short_array_by_block_2x2() 392 void av1_get_block_hash_value(uint8_t *y_src, int stride, int block_size, in av1_get_block_hash_value() argument 405 uint16_t *y16_src = CONVERT_TO_SHORTPTR(y_src); in av1_get_block_hash_value() 425 get_pixels_in_1D_char_array_by_block_2x2(y_src + y_pos * stride + x_pos, in av1_get_block_hash_value()
|
D | hash_motion.h | 71 void av1_get_block_hash_value(uint8_t *y_src, int stride, int block_size,
|
/external/webrtc/webrtc/modules/video_processing/util/ |
D | skin_detection.cc | 43 bool MbHasSkinColor(const uint8_t* y_src, in MbHasSkinColor() argument 51 const uint8_t* y = y_src + ((mb_row << 4) + 8) * stride_y + (mb_col << 4) + 8; in MbHasSkinColor()
|
D | skin_detection.h | 17 bool MbHasSkinColor(const uint8_t* y_src,
|
/external/libvpx/libvpx/vp8/common/ |
D | mfqe.c | 65 static void apply_ifactor(unsigned char *y_src, int y_src_stride, in apply_ifactor() argument 72 vp8_filter_by_weight16x16(y_src, y_src_stride, y_dst, y_dst_stride, in apply_ifactor() 79 vp8_filter_by_weight8x8(y_src, y_src_stride, y_dst, y_dst_stride, in apply_ifactor()
|
/external/libvpx/libvpx/vp8/decoder/ |
D | decodeframe.c | 358 unsigned char *y_src, in yv12_extend_frame_left_right_c() argument 379 src_ptr1 = y_src; in yv12_extend_frame_left_right_c()
|