mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 04:30:02 +00:00
lavfi/drawbox: reindent after previous commit
This commit is contained in:
parent
1b3fdd9731
commit
003bd88d99
@ -144,17 +144,17 @@ static int draw_slice(AVFilterLink *inlink, int y0, int h, int slice_dir)
|
||||
(x - xb < 3) || (xb + drawbox->w - x < 4))
|
||||
row[0][x] = 0xff - row[0][x];
|
||||
} else {
|
||||
for (x = FFMAX(xb, 0); x < (xb + drawbox->w) && x < picref->video->w; x++) {
|
||||
double alpha = (double)drawbox->yuv_color[A] / 255;
|
||||
for (x = FFMAX(xb, 0); x < (xb + drawbox->w) && x < picref->video->w; x++) {
|
||||
double alpha = (double)drawbox->yuv_color[A] / 255;
|
||||
|
||||
if ((y - yb < 3) || (yb + drawbox->h - y < 4) ||
|
||||
(x - xb < 3) || (xb + drawbox->w - x < 4)) {
|
||||
row[0][x ] = (1 - alpha) * row[0][x ] + alpha * drawbox->yuv_color[Y];
|
||||
row[1][x >> drawbox->hsub] = (1 - alpha) * row[1][x >> drawbox->hsub] + alpha * drawbox->yuv_color[U];
|
||||
row[2][x >> drawbox->hsub] = (1 - alpha) * row[2][x >> drawbox->hsub] + alpha * drawbox->yuv_color[V];
|
||||
if ((y - yb < 3) || (yb + drawbox->h - y < 4) ||
|
||||
(x - xb < 3) || (xb + drawbox->w - x < 4)) {
|
||||
row[0][x ] = (1 - alpha) * row[0][x ] + alpha * drawbox->yuv_color[Y];
|
||||
row[1][x >> drawbox->hsub] = (1 - alpha) * row[1][x >> drawbox->hsub] + alpha * drawbox->yuv_color[U];
|
||||
row[2][x >> drawbox->hsub] = (1 - alpha) * row[2][x >> drawbox->hsub] + alpha * drawbox->yuv_color[V];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return ff_draw_slice(inlink->dst->outputs[0], y0, h, 1);
|
||||
|
Loading…
Reference in New Issue
Block a user