mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/vf_geq: reindent
This commit is contained in:
parent
8a0d45a92e
commit
036fff7e43
|
@ -102,22 +102,22 @@ static inline double getpix(void *priv, double x, double y, int plane)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (geq->interpolation == INTERP_BILINEAR) {
|
if (geq->interpolation == INTERP_BILINEAR) {
|
||||||
xi = x = av_clipd(x, 0, w - 2);
|
xi = x = av_clipd(x, 0, w - 2);
|
||||||
yi = y = av_clipd(y, 0, h - 2);
|
yi = y = av_clipd(y, 0, h - 2);
|
||||||
|
|
||||||
x -= xi;
|
x -= xi;
|
||||||
y -= yi;
|
y -= yi;
|
||||||
|
|
||||||
if (geq->bps > 8) {
|
if (geq->bps > 8) {
|
||||||
const uint16_t *src16 = (const uint16_t*)src;
|
const uint16_t *src16 = (const uint16_t*)src;
|
||||||
linesize /= 2;
|
linesize /= 2;
|
||||||
|
|
||||||
return (1-y)*((1-x)*src16[xi + yi * linesize] + x*src16[xi + 1 + yi * linesize])
|
return (1-y)*((1-x)*src16[xi + yi * linesize] + x*src16[xi + 1 + yi * linesize])
|
||||||
+ y *((1-x)*src16[xi + (yi+1) * linesize] + x*src16[xi + 1 + (yi+1) * linesize]);
|
+ y *((1-x)*src16[xi + (yi+1) * linesize] + x*src16[xi + 1 + (yi+1) * linesize]);
|
||||||
} else {
|
} else {
|
||||||
return (1-y)*((1-x)*src[xi + yi * linesize] + x*src[xi + 1 + yi * linesize])
|
return (1-y)*((1-x)*src[xi + yi * linesize] + x*src[xi + 1 + yi * linesize])
|
||||||
+ y *((1-x)*src[xi + (yi+1) * linesize] + x*src[xi + 1 + (yi+1) * linesize]);
|
+ y *((1-x)*src[xi + (yi+1) * linesize] + x*src[xi + 1 + (yi+1) * linesize]);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
xi = av_clipd(x, 0, w - 1);
|
xi = av_clipd(x, 0, w - 1);
|
||||||
yi = av_clipd(y, 0, h - 1);
|
yi = av_clipd(y, 0, h - 1);
|
||||||
|
|
Loading…
Reference in New Issue