Home
last modified time | relevance | path

Searched refs:pixsteps (Results 1 – 2 of 2) sorted by relevance

/third_party/ffmpeg/libavfilter/
Dvf_swaprect.c39 int pixsteps[4]; member
184 uint8_t *src = in->data[p] + y1[p] * in->linesize[p] + x1[p] * s->pixsteps[p]; in filter_frame()
185 uint8_t *dst = in->data[p] + y2[p] * in->linesize[p] + x2[p] * s->pixsteps[p]; in filter_frame()
188 memcpy(s->temp, src, pw[p] * s->pixsteps[p]); in filter_frame()
189 memmove(src, dst, pw[p] * s->pixsteps[p]); in filter_frame()
190 memcpy(dst, s->temp, pw[p] * s->pixsteps[p]); in filter_frame()
211 av_image_fill_max_pixsteps(s->pixsteps, NULL, s->desc); in config_input()
214 s->temp = av_malloc_array(inlink->w, s->pixsteps[0]); in config_input()
Dvf_transpose.c47 int pixsteps[4]; member
209 av_image_fill_max_pixsteps(s->pixsteps, NULL, desc_out); in config_props_output()
222 switch (s->pixsteps[i]) { in config_props_output()
242 ff_transpose_init_x86(v, s->pixsteps[i]); in config_props_output()
279 int pixstep = s->pixsteps[plane]; in filter_slice()