summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libavfilter/vf_v360.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_v360.c b/libavfilter/vf_v360.c
index 79415ef..6f1359d 100644
--- a/libavfilter/vf_v360.c
+++ b/libavfilter/vf_v360.c
@@ -1605,8 +1605,8 @@ static void xyz_to_ball(const V360Context *s,
float uf, vf;
int ui, vi;
- uf = (1.f - r * vec[0] / l) * width / 2.f;
- vf = (1.f + r * vec[1] / l) * height / 2.f;
+ uf = (1.f - r * vec[0] * s->input_mirror_modifier[0] / l) * width / 2.f;
+ vf = (1.f + r * vec[1] * s->input_mirror_modifier[1] / l) * height / 2.f;
ui = floorf(uf);
vi = floorf(vf);
OpenPOWER on IntegriCloud