Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
091695f8
Commit
091695f8
authored
Jan 20, 2020
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_v360: rewrite fov_from_dfov()
parent
e16cd7b8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
vf_v360.c
libavfilter/vf_v360.c
+9
-9
No files found.
libavfilter/vf_v360.c
View file @
091695f8
...
...
@@ -2716,18 +2716,18 @@ static int allocate_plane(V360Context *s, int sizeof_uv, int sizeof_ker, int p)
return
0
;
}
static
void
fov_from_dfov
(
V360Context
*
s
,
float
w
,
float
h
)
static
void
fov_from_dfov
(
float
d_fov
,
float
w
,
float
h
,
float
*
h_fov
,
float
*
v_fov
)
{
const
float
da
=
tanf
(
0
.
5
*
FFMIN
(
s
->
d_fov
,
359
.
f
)
*
M_PI
/
180
.
f
);
const
float
da
=
tanf
(
0
.
5
*
FFMIN
(
d_fov
,
359
.
f
)
*
M_PI
/
180
.
f
);
const
float
d
=
hypotf
(
w
,
h
);
s
->
h_fov
=
atan2f
(
da
*
w
,
d
)
*
360
.
f
/
M_PI
;
s
->
v_fov
=
atan2f
(
da
*
h
,
d
)
*
360
.
f
/
M_PI
;
*
h_fov
=
atan2f
(
da
*
w
,
d
)
*
360
.
f
/
M_PI
;
*
v_fov
=
atan2f
(
da
*
h
,
d
)
*
360
.
f
/
M_PI
;
if
(
s
->
h_fov
<
0
.
f
)
s
->
h_fov
+=
360
.
f
;
if
(
s
->
v_fov
<
0
.
f
)
s
->
v_fov
+=
360
.
f
;
if
(
*
h_fov
<
0
.
f
)
*
h_fov
+=
360
.
f
;
if
(
*
v_fov
<
0
.
f
)
*
v_fov
+=
360
.
f
;
}
static
void
set_dimensions
(
int
*
outw
,
int
*
outh
,
int
w
,
int
h
,
const
AVPixFmtDescriptor
*
desc
)
...
...
@@ -3115,7 +3115,7 @@ static int config_output(AVFilterLink *outlink)
}
if
(
s
->
d_fov
>
0
.
f
)
fov_from_dfov
(
s
,
w
,
h
);
fov_from_dfov
(
s
->
d_fov
,
w
,
h
,
&
s
->
h_fov
,
&
s
->
v_fov
);
if
(
prepare_out
)
{
err
=
prepare_out
(
ctx
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment