mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 19:58:59 +00:00
parent
e923e6205e
commit
a7fd127970
@ -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…
Reference in New Issue
Block a user