Searched refs:pixstep (Results 1 - 5 of 5) sorted by relevance
/third_party/ffmpeg/libavfilter/x86/ |
H A D | vf_transpose_init.c | 37 av_cold void ff_transpose_init_x86(TransVtable *v, int pixstep) in ff_transpose_init_x86() argument 41 if (EXTERNAL_SSE2(cpu_flags) && pixstep == 1) { in ff_transpose_init_x86() 45 if (EXTERNAL_SSE2(cpu_flags) && pixstep == 2) { in ff_transpose_init_x86()
|
/third_party/ffmpeg/libavfilter/ |
H A 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()
|
H A D | avf_showwaves.c | 82 int pixstep; member 459 showwaves->pixstep = 1; in config_output() 470 showwaves->pixstep = 4; in config_output() 583 const int pixstep = showwaves->pixstep; in push_single_pic() local 620 uint8_t *buf = out->data[0] + col * pixstep; in push_single_pic() 673 memset(out->data[0] + j*out->linesize[0], 0, outlink->w * showwaves->pixstep); in alloc_out_frame() 702 const int pixstep = showwaves->pixstep; in showwaves_filter_frame() local 715 uint8_t *buf = outpicref->data[0] + showwaves->buf_idx * pixstep; in showwaves_filter_frame() [all...] |
H A D | vf_stereo3d.c | 149 int pixstep[4]; member 587 av_image_fill_max_pixsteps(s->pixstep, NULL, desc); in config_output() 635 const uint8_t *src = (const uint8_t*)in->data[p] + y * in->linesize[p] + d * s->pixstep[p]; in interleave_cols_to_any() 638 switch (s->pixstep[p]) { in interleave_cols_to_any() 788 s->in_off_left[i] = (AV_CEIL_RSHIFT(s->in.row_left, vsub) + s->in.off_lstep) * ileft->linesize[i] + AV_CEIL_RSHIFT(s->in.off_left * s->pixstep[i], hsub); in filter_frame() 789 s->in_off_right[i] = (AV_CEIL_RSHIFT(s->in.row_right, vsub) + s->in.off_rstep) * iright->linesize[i] + AV_CEIL_RSHIFT(s->in.off_right * s->pixstep[i], hsub); in filter_frame() 790 out_off_left[i] = (AV_CEIL_RSHIFT(s->out.row_left, vsub) + s->out.off_lstep) * oleft->linesize[i] + AV_CEIL_RSHIFT(s->out.off_left * s->pixstep[i], hsub); in filter_frame() 791 out_off_right[i] = (AV_CEIL_RSHIFT(s->out.row_right, vsub) + s->out.off_rstep) * oright->linesize[i] + AV_CEIL_RSHIFT(s->out.off_right * s->pixstep[i], hsub); in filter_frame() 956 uint8_t *left = ileft->data[i] + ileft->linesize[i] * y + s->in_off_left[i] + d1 * s->pixstep[i]; in filter_frame() 957 uint8_t *right = iright->data[i] + iright->linesize[i] * y + s->in_off_right[i] + d2 * s->pixstep[ in filter_frame() [all...] |
H A D | transpose.h | 48 void ff_transpose_init_x86(TransVtable *v, int pixstep);
|
Completed in 5 milliseconds