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
13564fc2
Commit
13564fc2
authored
Jan 29, 2017
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avutil/eval: add atan2 function
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
036e12b2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
utils.texi
doc/utils.texi
+3
-0
eval.c
libavutil/eval.c
+3
-1
No files found.
doc/utils.texi
View file @
13564fc2
...
...
@@ -776,6 +776,9 @@ Compute arcsine of @var{x}.
@item atan(x)
Compute arctangent of @var{x}.
@item atan2(x, y)
Compute principal value of the arc tangent of @var{y}/@var{x}.
@item between(x, min, max)
Return 1 if @var{x} is greater than or equal to @var{min} and lesser than or
equal to @var{max}, 0 otherwise.
...
...
libavutil/eval.c
View file @
13564fc2
...
...
@@ -155,7 +155,7 @@ struct AVExpr {
e_pow
,
e_mul
,
e_div
,
e_add
,
e_last
,
e_st
,
e_while
,
e_taylor
,
e_root
,
e_floor
,
e_ceil
,
e_trunc
,
e_sqrt
,
e_not
,
e_random
,
e_hypot
,
e_gcd
,
e_if
,
e_ifnot
,
e_print
,
e_bitand
,
e_bitor
,
e_between
,
e_clip
e_if
,
e_ifnot
,
e_print
,
e_bitand
,
e_bitor
,
e_between
,
e_clip
,
e_atan2
}
type
;
double
value
;
// is sign in other types
union
{
...
...
@@ -306,6 +306,7 @@ static double eval_expr(Parser *p, AVExpr *e)
case
e_last
:
return
e
->
value
*
d2
;
case
e_st
:
return
e
->
value
*
(
p
->
var
[
av_clip
(
d
,
0
,
VARS
-
1
)]
=
d2
);
case
e_hypot
:
return
e
->
value
*
hypot
(
d
,
d2
);
case
e_atan2
:
return
e
->
value
*
atan2
(
d
,
d2
);
case
e_bitand
:
return
isnan
(
d
)
||
isnan
(
d2
)
?
NAN
:
e
->
value
*
((
long
int
)
d
&
(
long
int
)
d2
);
case
e_bitor
:
return
isnan
(
d
)
||
isnan
(
d2
)
?
NAN
:
e
->
value
*
((
long
int
)
d
|
(
long
int
)
d2
);
}
...
...
@@ -452,6 +453,7 @@ static int parse_primary(AVExpr **e, Parser *p)
else
if
(
strmatch
(
next
,
"bitor"
))
d
->
type
=
e_bitor
;
else
if
(
strmatch
(
next
,
"between"
))
d
->
type
=
e_between
;
else
if
(
strmatch
(
next
,
"clip"
))
d
->
type
=
e_clip
;
else
if
(
strmatch
(
next
,
"atan2"
))
d
->
type
=
e_atan2
;
else
{
for
(
i
=
0
;
p
->
func1_names
&&
p
->
func1_names
[
i
];
i
++
)
{
if
(
strmatch
(
next
,
p
->
func1_names
[
i
]))
{
...
...
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