mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
lavfi/curves: reindent after previous commit
This commit is contained in:
parent
e30cdac14b
commit
39c6d4a8c5
@ -609,20 +609,20 @@ static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
uint8_t *dst = out->data[0] + slice_start * out->linesize[0];
|
||||
const uint8_t *src = in->data[0] + slice_start * in->linesize[0];
|
||||
uint8_t *dst = out->data[0] + slice_start * out->linesize[0];
|
||||
const uint8_t *src = in->data[0] + slice_start * in->linesize[0];
|
||||
|
||||
for (y = slice_start; y < slice_end; y++) {
|
||||
for (x = 0; x < in->width * step; x += step) {
|
||||
dst[x + r] = curves->graph[R][src[x + r]];
|
||||
dst[x + g] = curves->graph[G][src[x + g]];
|
||||
dst[x + b] = curves->graph[B][src[x + b]];
|
||||
if (!direct && step == 4)
|
||||
dst[x + a] = src[x + a];
|
||||
for (y = slice_start; y < slice_end; y++) {
|
||||
for (x = 0; x < in->width * step; x += step) {
|
||||
dst[x + r] = curves->graph[R][src[x + r]];
|
||||
dst[x + g] = curves->graph[G][src[x + g]];
|
||||
dst[x + b] = curves->graph[B][src[x + b]];
|
||||
if (!direct && step == 4)
|
||||
dst[x + a] = src[x + a];
|
||||
}
|
||||
dst += out->linesize[0];
|
||||
src += in ->linesize[0];
|
||||
}
|
||||
dst += out->linesize[0];
|
||||
src += in ->linesize[0];
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user