Lines Matching refs:plane
181 int i, plane, row, sprite;
199 for (plane = 0; plane < (CONFIG_GRAY && s->avctx->flags & AV_CODEC_FLAG_GRAY ? 1 : 3); plane++) {
200 int width = v->output_width>>!!plane;
202 for (row = 0; row < v->output_height>>!!plane; row++) {
203 uint8_t *dst = v->sprite_output_frame->data[plane] +
204 v->sprite_output_frame->linesize[plane] * row;
207 uint8_t *iplane = s->current_picture.f->data[plane];
208 int iline = s->current_picture.f->linesize[plane];
214 iplane = s->last_picture.f->data[plane];
215 iline = s->last_picture.f->linesize[plane];
217 next_line = FFMIN(yline + 1, (v->sprite_height >> !!plane) - 1) * iline;
265 if (!plane) {
313 int plane, i;
320 for (plane = 0; plane < (CONFIG_GRAY && s->avctx->flags & AV_CODEC_FLAG_GRAY ? 1 : 3); plane++)
321 for (i = 0; i < v->sprite_height>>!!plane; i++)
322 memset(f->data[plane] + i * f->linesize[plane],
323 plane ? 128 : 0, f->linesize[plane]);