/third_party/ffmpeg/libavcodec/ |
D | hevc_filter.c | 142 ptrdiff_t stride_dst, ptrdiff_t stride_src) in copy_CTB() argument 146 if (((intptr_t)dst | (intptr_t)src | stride_dst | stride_src) & 15) { in copy_CTB() 150 dst += stride_dst; in copy_CTB() 157 dst += stride_dst; in copy_CTB() 173 ptrdiff_t stride_dst, ptrdiff_t stride_src) in copy_vert() argument 179 dst += stride_dst; in copy_vert() 185 dst += stride_dst; in copy_vert() 213 ptrdiff_t stride_src, ptrdiff_t stride_dst, in restore_tqb_pixels() argument 232 … *dst = dst1 + (((y << s->ps.sps->log2_min_pu_size) - y0) >> vshift) * stride_dst + ((((x << s->ps… in restore_tqb_pixels() 236 dst += stride_dst; in restore_tqb_pixels() [all …]
|
D | hevcdsp_template.c | 299 ptrdiff_t stride_dst, ptrdiff_t stride_src, in FUNC() 309 stride_dst /= sizeof(pixel); in FUNC() 317 dst += stride_dst; in FUNC() 324 static void FUNC(sao_edge_filter)(uint8_t *_dst, uint8_t *_src, ptrdiff_t stride_dst, int16_t *sao_… in FUNC() 339 stride_dst /= sizeof(pixel); in FUNC() 351 dst += stride_dst; in FUNC() 356 ptrdiff_t stride_dst, ptrdiff_t stride_src, SAOParams *sao, in FUNC() 368 stride_dst /= sizeof(pixel); in FUNC() 375 dst[y * stride_dst] = av_clip_pixel(src[y * stride_src] + offset_val); in FUNC() 383 … dst[x * stride_dst + offset] = av_clip_pixel(src[x * stride_src + offset] + offset_val); in FUNC() [all …]
|
D | hevcdsp.h | 67 …o_edge_filter[5])(uint8_t *_dst /* align 16 */, uint8_t *_src /* align 32 */, ptrdiff_t stride_dst,
|
/third_party/ffmpeg/libavcodec/arm/ |
D | hevcdsp_init_neon.c | 28 ptrdiff_t stride_dst, ptrdiff_t stride_src, 31 void ff_hevc_sao_edge_filter_neon_8_wrapper(uint8_t *_dst, uint8_t *_src, ptrdiff_t stride_dst, int… 153 void ff_hevc_sao_band_filter_neon_8(uint8_t *dst, uint8_t *src, ptrdiff_t stride_dst, ptrdiff_t str… 156 ptrdiff_t stride_dst, ptrdiff_t stride_src, in ff_hevc_sao_band_filter_neon_8_wrapper() argument 168 ff_hevc_sao_band_filter_neon_8(dst, src, stride_dst, stride_src, width, height, offset_table); in ff_hevc_sao_band_filter_neon_8_wrapper() 171 void ff_hevc_sao_edge_filter_neon_8(uint8_t *dst, uint8_t *src, ptrdiff_t stride_dst, ptrdiff_t str… 174 void ff_hevc_sao_edge_filter_neon_8_wrapper(uint8_t *_dst, uint8_t *_src, ptrdiff_t stride_dst, int… in ff_hevc_sao_edge_filter_neon_8_wrapper() argument 191 …ff_hevc_sao_edge_filter_neon_8(dst, src, stride_dst, stride_src, width, height, a_stride, b_stride… in ff_hevc_sao_edge_filter_neon_8_wrapper()
|
/third_party/ffmpeg/libavcodec/mips/ |
D | idctdsp_mips.h | 40 void ff_simple_idct_put_msa(uint8_t *dest, ptrdiff_t stride_dst, int16_t *block); 41 void ff_simple_idct_add_msa(uint8_t *dest, ptrdiff_t stride_dst, int16_t *block);
|
D | hevc_lpf_sao_msa.c | 2597 ptrdiff_t stride_dst, ptrdiff_t stride_src, in ff_hevc_sao_band_filter_0_8_msa() argument 2602 hevc_sao_band_filter_16multiple_msa(dst, stride_dst, src, stride_src, in ff_hevc_sao_band_filter_0_8_msa() 2611 hevc_sao_band_filter_8width_msa(dst, stride_dst, src, stride_src, in ff_hevc_sao_band_filter_0_8_msa() 2619 hevc_sao_band_filter_4width_msa(dst, stride_dst, src, stride_src, in ff_hevc_sao_band_filter_0_8_msa() 2625 ptrdiff_t stride_dst, in ff_hevc_sao_edge_filter_8_msa() argument 2634 hevc_sao_edge_filter_0degree_16multiple_msa(dst, stride_dst, in ff_hevc_sao_edge_filter_8_msa() 2645 hevc_sao_edge_filter_0degree_8width_msa(dst, stride_dst, in ff_hevc_sao_edge_filter_8_msa() 2654 hevc_sao_edge_filter_0degree_4width_msa(dst, stride_dst, in ff_hevc_sao_edge_filter_8_msa() 2662 hevc_sao_edge_filter_90degree_16multiple_msa(dst, stride_dst, in ff_hevc_sao_edge_filter_8_msa() 2673 hevc_sao_edge_filter_90degree_8width_msa(dst, stride_dst, in ff_hevc_sao_edge_filter_8_msa() [all …]
|
D | hevcdsp_mips.h | 455 ptrdiff_t stride_dst, ptrdiff_t stride_src, 460 ptrdiff_t stride_dst,
|
/third_party/openh264/codec/decoder/core/src/ |
D | mv_pred.cpp | 131 void CopyRectBlock4Cols (void* vdst, void* vsrc, const int32_t stride_dst, const int32_t stride_src… in CopyRectBlock4Cols() argument 137 dst[stride_dst * 0] = src[stride_src * 0]; in CopyRectBlock4Cols() 138 dst[stride_dst * 1] = src[stride_src * 1]; in CopyRectBlock4Cols() 139 dst[stride_dst * 2] = src[stride_src * 2]; in CopyRectBlock4Cols() 140 dst[stride_dst * 3] = src[stride_src * 3]; in CopyRectBlock4Cols() 142 * (uint16_t*) (&dst[stride_dst * 0]) = * (uint16_t*) (&src[stride_src * 0]); in CopyRectBlock4Cols() 143 * (uint16_t*) (&dst[stride_dst * 1]) = * (uint16_t*) (&src[stride_src * 1]); in CopyRectBlock4Cols() 144 * (uint16_t*) (&dst[stride_dst * 2]) = * (uint16_t*) (&src[stride_src * 2]); in CopyRectBlock4Cols() 145 * (uint16_t*) (&dst[stride_dst * 3]) = * (uint16_t*) (&src[stride_src * 3]); in CopyRectBlock4Cols() 147 * (uint32_t*) (&dst[stride_dst * 0]) = * (uint32_t*) (&src[stride_src * 0]); in CopyRectBlock4Cols() [all …]
|
/third_party/ffmpeg/libavcodec/aarch64/ |
D | hevcdsp_init_aarch64.c | 57 ptrdiff_t stride_dst, ptrdiff_t stride_src,
|
/third_party/gstreamer/gstplugins_bad/sys/winscreencap/ |
D | dxgicapture.c | 585 gint stride_dst; in dxgicap_copy_buffer() local 597 stride_dst = GST_VIDEO_FRAME_PLANE_STRIDE (&vframe, 0); in dxgicap_copy_buffer() 599 if (line_size > stride_dst) { in dxgicap_copy_buffer() 609 p_dst += stride_dst; in dxgicap_copy_buffer() 617 _draw_pointer (self, frame_buffer, dst_rect, stride_dst); in dxgicap_copy_buffer()
|
/third_party/ffmpeg/tests/checkasm/ |
D | hevc_sao.c | 114 declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *dst, uint8_t *src, ptrdiff_t stride_dst, in check_sao_edge()
|
/third_party/ffmpeg/libavcodec/x86/ |
D | hevcdsp_init.c | 663 void ff_hevc_sao_edge_filter_8_##bitd##_##opt(uint8_t *_dst, uint8_t *_src, ptrdiff_t stride_dst, i… 665 void ff_hevc_sao_edge_filter_16_##bitd##_##opt(uint8_t *_dst, uint8_t *_src, ptrdiff_t stride_dst, … 667 void ff_hevc_sao_edge_filter_32_##bitd##_##opt(uint8_t *_dst, uint8_t *_src, ptrdiff_t stride_dst, … 669 void ff_hevc_sao_edge_filter_48_##bitd##_##opt(uint8_t *_dst, uint8_t *_src, ptrdiff_t stride_dst, … 671 void ff_hevc_sao_edge_filter_64_##bitd##_##opt(uint8_t *_dst, uint8_t *_src, ptrdiff_t stride_dst, …
|
D | hevc_sao.asm | 252 ;void ff_hevc_sao_edge_filter_<width>_8_<opt>(uint8_t *_dst, uint8_t *_src, ptrdiff_t stride_dst, i…
|
D | hevc_sao_10bit.asm | 224 …e_filter_<width>_<depth>_<opt>(uint8_t *_dst, uint8_t *_src, ptrdiff_t stride_dst, int16_t *sao_of…
|