mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-23 15:53:08 +00:00
avfilter/vf_fade: reindent after previous commit
This commit is contained in:
parent
6c9a9dd25a
commit
547b0c61af
@ -262,17 +262,17 @@ static int filter_slice_luma(AVFilterContext *ctx, void *arg, int jobnr,
|
||||
int i, j;
|
||||
|
||||
for (int k = 0; k < 1 + 2 * (s->is_planar && s->is_rgb); k++) {
|
||||
for (i = slice_start; i < slice_end; i++) {
|
||||
uint8_t *p = frame->data[k] + i * frame->linesize[k];
|
||||
for (j = 0; j < frame->width * s->bpp; j++) {
|
||||
/* s->factor is using 16 lower-order bits for decimal
|
||||
* places. 32768 = 1 << 15, it is an integer representation
|
||||
* of 0.5 and is for rounding. */
|
||||
*p = ((*p - s->black_level) * s->factor + s->black_level_scaled) >> 16;
|
||||
p++;
|
||||
for (i = slice_start; i < slice_end; i++) {
|
||||
uint8_t *p = frame->data[k] + i * frame->linesize[k];
|
||||
for (j = 0; j < frame->width * s->bpp; j++) {
|
||||
/* s->factor is using 16 lower-order bits for decimal
|
||||
* places. 32768 = 1 << 15, it is an integer representation
|
||||
* of 0.5 and is for rounding. */
|
||||
*p = ((*p - s->black_level) * s->factor + s->black_level_scaled) >> 16;
|
||||
p++;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user