Searched refs:pixstep (Results 1 – 5 of 5) sorted by relevance
/third_party/ffmpeg/libavfilter/x86/ |
D | vf_transpose_init.c | 38 av_cold void ff_transpose_init_x86(TransVtable *v, int pixstep) in ff_transpose_init_x86() argument 42 if (EXTERNAL_SSE2(cpu_flags) && pixstep == 1) { in ff_transpose_init_x86() 46 if (EXTERNAL_SSE2(cpu_flags) && pixstep == 2) { in ff_transpose_init_x86()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_transpose.c | 279 int pixstep = s->pixsteps[plane]; in filter_slice() local 307 v->transpose_8x8(src + x * srclinesize + y * pixstep, in filter_slice() 309 dst + (y - start) * dstlinesize + x * pixstep, in filter_slice() 313 v->transpose_block(src + x * srclinesize + y * pixstep, in filter_slice() 315 dst + (y - start) * dstlinesize + x * pixstep, in filter_slice() 320 v->transpose_block(src + 0 * srclinesize + y * pixstep, in filter_slice() 322 dst + (y - start) * dstlinesize + 0 * pixstep, in filter_slice()
|
D | avf_showwaves.c | 80 int pixstep; member 454 showwaves->pixstep = 1; in config_output() 465 showwaves->pixstep = 4; in config_output() 578 const int pixstep = showwaves->pixstep; in push_single_pic() local 615 uint8_t *buf = out->data[0] + col * pixstep; in push_single_pic() 668 memset(out->data[0] + j*out->linesize[0], 0, outlink->w * showwaves->pixstep); in alloc_out_frame() 697 const int pixstep = showwaves->pixstep; in showwaves_filter_frame() local 710 uint8_t *buf = outpicref->data[0] + showwaves->buf_idx * pixstep; in showwaves_filter_frame()
|
D | vf_stereo3d.c | 149 int pixstep[4]; member 591 av_image_fill_max_pixsteps(s->pixstep, NULL, desc); in config_output() 638 const uint8_t *src = (const uint8_t*)in->data[p] + y * in->linesize[p] + d * s->pixstep[p]; in interleave_cols_to_any() 641 switch (s->pixstep[p]) { in interleave_cols_to_any() 791 …+ s->in.off_lstep) * ileft->linesize[i] + AV_CEIL_RSHIFT(s->in.off_left * s->pixstep[i], hsub); in filter_frame() 792 …+ s->in.off_rstep) * iright->linesize[i] + AV_CEIL_RSHIFT(s->in.off_right * s->pixstep[i], hsub); in filter_frame() 793 …+ s->out.off_lstep) * oleft->linesize[i] + AV_CEIL_RSHIFT(s->out.off_left * s->pixstep[i], hsub); in filter_frame() 794 …+ s->out.off_rstep) * oright->linesize[i] + AV_CEIL_RSHIFT(s->out.off_right * s->pixstep[i], hsub); in filter_frame() 959 …nt8_t *left = ileft->data[i] + ileft->linesize[i] * y + s->in_off_left[i] + d1 * s->pixstep[i]; in filter_frame() 960 …nt8_t *right = iright->data[i] + iright->linesize[i] * y + s->in_off_right[i] + d2 * s->pixstep[i]; in filter_frame() [all …]
|
D | transpose.h | 48 void ff_transpose_init_x86(TransVtable *v, int pixstep);
|