]> git.sesse.net Git - ffmpeg/commitdiff
avfilter/vf_v360: speedup fisheye output
authorPaul B Mahol <onemda@gmail.com>
Sun, 29 Mar 2020 11:07:35 +0000 (13:07 +0200)
committerPaul B Mahol <onemda@gmail.com>
Sun, 29 Mar 2020 11:27:49 +0000 (13:27 +0200)
libavfilter/vf_v360.c

index 66e3f09f6d965eef9b492749e43cc1dfef505346..75f512e24221aea24f7784e74dc1b4de865c707c 100644 (file)
@@ -2531,9 +2531,14 @@ static int fisheye_to_xyz(const V360Context *s,
     const float phi   = atan2f(vf, uf);
     const float theta = M_PI_2 * (1.f - hypotf(uf, vf));
 
-    vec[0] = cosf(theta) * cosf(phi);
-    vec[1] = cosf(theta) * sinf(phi);
-    vec[2] = sinf(theta);
+    const float sin_phi   = sinf(phi);
+    const float cos_phi   = cosf(phi);
+    const float sin_theta = sinf(theta);
+    const float cos_theta = cosf(theta);
+
+    vec[0] = cos_theta * cos_phi;
+    vec[1] = cos_theta * sin_phi;
+    vec[2] = sin_theta;
 
     normalize_vector(vec);