Browse Source

avfilter/vf_colorconstancy: fix overreads in gauss array

Fixes #8250
tags/n4.3
Paul B Mahol 6 years ago
parent
commit
a7fd127970
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavfilter/vf_colorconstancy.c

+ 2
- 2
libavfilter/vf_colorconstancy.c View File

@@ -280,7 +280,7 @@ static int slice_get_derivative(AVFilterContext* ctx, void* arg, int jobnr, int
dst[INDX2D(r, c, width)] = 0;
for (g = 0; g < filtersize; ++g) {
dst[INDX2D(r, c, width)] += GAUSS(src, r, c + GINDX(filtersize, g),
in_linesize, height, width, gauss[GINDX(filtersize, g)]);
in_linesize, height, width, gauss[g]);
}
}
}
@@ -295,7 +295,7 @@ static int slice_get_derivative(AVFilterContext* ctx, void* arg, int jobnr, int
dst[INDX2D(r, c, width)] = 0;
for (g = 0; g < filtersize; ++g) {
dst[INDX2D(r, c, width)] += GAUSS(src, r + GINDX(filtersize, g), c,
width, height, width, gauss[GINDX(filtersize, g)]);
width, height, width, gauss[g]);
}
}
}


Loading…
Cancel
Save