lavfi/curves: reindent after previous commit

This commit is contained in:
Clément Bœsch 2016-07-24 12:11:30 +02:00
parent e30cdac14b
commit 39c6d4a8c5
1 changed files with 12 additions and 12 deletions

View File

@ -609,20 +609,20 @@ static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
} }
} }
} else { } else {
uint8_t *dst = out->data[0] + slice_start * out->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]; const uint8_t *src = in->data[0] + slice_start * in->linesize[0];
for (y = slice_start; y < slice_end; y++) { for (y = slice_start; y < slice_end; y++) {
for (x = 0; x < in->width * step; x += step) { for (x = 0; x < in->width * step; x += step) {
dst[x + r] = curves->graph[R][src[x + r]]; dst[x + r] = curves->graph[R][src[x + r]];
dst[x + g] = curves->graph[G][src[x + g]]; dst[x + g] = curves->graph[G][src[x + g]];
dst[x + b] = curves->graph[B][src[x + b]]; dst[x + b] = curves->graph[B][src[x + b]];
if (!direct && step == 4) if (!direct && step == 4)
dst[x + a] = src[x + a]; dst[x + a] = src[x + a];
}
dst += out->linesize[0];
src += in ->linesize[0];
} }
dst += out->linesize[0];
src += in ->linesize[0];
}
} }
return 0; return 0;
} }