summaryrefslogtreecommitdiff
path: root/libavfilter/vf_v360.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2020-01-23 10:31:22 +0100
committerPaul B Mahol <onemda@gmail.com>2020-01-23 11:20:18 +0100
commit05d3d09cf5fe5e1aec4ba6107a2da543962d6b6a (patch)
tree448ccc6527a44e7799275bc1c69ed54b3a71d052 /libavfilter/vf_v360.c
parent41f283ec7a2ee29c65b468c3d2c46d119dbb9071 (diff)
avfilter/vf_v360: fix small artifacts with tetrahedron inputs
Diffstat (limited to 'libavfilter/vf_v360.c')
-rw-r--r--libavfilter/vf_v360.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/vf_v360.c b/libavfilter/vf_v360.c
index 1173b33ae1..39dd07af6e 100644
--- a/libavfilter/vf_v360.c
+++ b/libavfilter/vf_v360.c
@@ -2656,8 +2656,8 @@ static void xyz_to_tetrahedron(const V360Context *s,
uf = 0.75f - 0.25f * x;
}
- uf *= width - 1;
- vf *= height - 1;
+ uf *= width;
+ vf *= height;
ui = floorf(uf);
vi = floorf(vf);
@@ -2667,7 +2667,7 @@ static void xyz_to_tetrahedron(const V360Context *s,
for (int i = -1; i < 3; i++) {
for (int j = -1; j < 3; j++) {
- us[i + 1][j + 1] = av_clip(ui + j, 0, width - 1);
+ us[i + 1][j + 1] = mod(ui + j, width);
vs[i + 1][j + 1] = av_clip(vi + i, 0, height - 1);
}
}