Searched refs:max_step (Results 1 - 6 of 6) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Dimgutils.c50 int max_step [4]; /* max pixel step for each plane */ local
57 av_image_fill_max_pixsteps(max_step, max_step_comp, desc);
59 return max_step[plane] * (((width + (1 << s) - 1)) >> s);
66 int max_step [4]; /* max pixel step for each plane */ local
81 av_image_fill_max_pixsteps(max_step, max_step_comp, desc);
85 if (max_step[i] > INT_MAX / shifted_w)
87 linesizes[i] = max_step[i] * shifted_w;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Dimgutils.c54 int max_step, int max_step_comp,
66 if (shifted_w && max_step > INT_MAX / shifted_w)
68 linesize = max_step * shifted_w;
78 int max_step [4]; /* max pixel step for each plane */ local
84 av_image_fill_max_pixsteps(max_step, max_step_comp, desc);
85 return image_get_linesize(width, plane, max_step[plane], max_step_comp[plane], desc);
92 int max_step [4]; /* max pixel step for each plane */ local
100 av_image_fill_max_pixsteps(max_step, max_step_comp, desc);
102 if ((ret = image_get_linesize(width, i, max_step[i], max_step_comp[i], desc)) < 0)
53 image_get_linesize(int width, int plane, int max_step, int max_step_comp, const AVPixFmtDescriptor *desc) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dvf_hflip.c33 int max_step[4]; ///< max pixel step for each plane, expressed as a number of bytes member in struct:__anon2080
74 av_image_fill_max_pixsteps(flip->max_step, NULL, pix_desc);
90 step = flip->max_step[plane];
H A Dvf_crop.c73 int max_step[4]; ///< max pixel step for each plane, expressed as a number of bytes member in struct:__anon2069
173 av_image_fill_max_pixsteps(crop->max_step, NULL, pix_desc);
273 ref2->data[0] += crop->x * crop->max_step[0];
279 ref2->data[i] += (crop->x * crop->max_step[i]) >> crop->hsub;
287 ref2->data[3] += crop->x * crop->max_step[3];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dvf_hflip.c39 int max_step[4]; ///< max pixel step for each plane, expressed as a number of bytes member in struct:FlipContext
69 av_image_fill_max_pixsteps(s->max_step, NULL, pix_desc);
97 step = s->max_step[plane];
H A Dvf_crop.c86 int max_step[4]; ///< max pixel step for each plane, expressed as a number of bytes member in struct:CropContext
158 av_image_fill_max_pixsteps(s->max_step, NULL, pix_desc);
280 frame->data[0] += s->x * s->max_step[0];
286 frame->data[i] += (s->x * s->max_step[i]) >> s->hsub;
294 frame->data[3] += s->x * s->max_step[3];

Completed in 175 milliseconds