This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avfilter/vf_v360: fix swapped variables
tags/n4.3
Paul B Mahol
5 years ago
parent
85025162da
commit
72be5d4661
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
libavfilter/vf_v360.c
+ 2
- 2
libavfilter/vf_v360.c
View File
@@ -3565,8 +3565,8 @@ static void fov_from_dfov(int format, float d_fov, float w, float h, float *h_fo
{
const float d = 0.5f * hypotf(w, h);
*h_fov = d /
h
* d_fov;
*v_fov = d /
w
* d_fov;
*h_fov = d /
w
* d_fov;
*v_fov = d /
h
* d_fov;
}
break;
case FLAT:
Write
Preview
Loading…
Cancel
Save