]> git.sesse.net Git - ffmpeg/commitdiff
avfilter/vf_v360: support input flips for tetrahedron format
authorPaul B Mahol <onemda@gmail.com>
Thu, 23 Jan 2020 10:16:13 +0000 (11:16 +0100)
committerPaul B Mahol <onemda@gmail.com>
Thu, 23 Jan 2020 10:20:18 +0000 (11:20 +0100)
libavfilter/vf_v360.c

index 39dd07af6ebafd57a74e6a6a079901dabac53ad3..cd7ad9be04c4ca61484a5b2f6c9afdef4148b2a8 100644 (file)
@@ -2647,13 +2647,13 @@ static void xyz_to_tetrahedron(const V360Context *s,
     y =  vec[1] / d;
     z = -vec[2] / d;
 
-    vf = 0.5f - y * 0.5f;
+    vf = 0.5f - y * 0.5f * s->input_mirror_modifier[1];
 
     if ((x + y >= 0.f &&  y + z >= 0.f && -z - x <= 0.f) ||
         (x + y <= 0.f && -y + z >= 0.f &&  z - x >= 0.f)) {
-        uf = 0.25f * x + 0.25f;
+        uf = 0.25f * x * s->input_mirror_modifier[0] + 0.25f;
     }  else {
-        uf = 0.75f - 0.25f * x;
+        uf = 0.75f - 0.25f * x * s->input_mirror_modifier[0];
     }
 
     uf *= width;