Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
ad485561
Commit
ad485561
authored
Mar 05, 2013
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavu/eval: add native support to lte and lt functions
parent
622a6f6f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
eval.c
libavutil/eval.c
+5
-3
No files found.
libavutil/eval.c
View file @
ad485561
...
@@ -141,7 +141,7 @@ struct AVExpr {
...
@@ -141,7 +141,7 @@ struct AVExpr {
enum
{
enum
{
e_value
,
e_const
,
e_func0
,
e_func1
,
e_func2
,
e_value
,
e_const
,
e_func0
,
e_func1
,
e_func2
,
e_squish
,
e_gauss
,
e_ld
,
e_isnan
,
e_isinf
,
e_squish
,
e_gauss
,
e_ld
,
e_isnan
,
e_isinf
,
e_mod
,
e_max
,
e_min
,
e_eq
,
e_gt
,
e_gte
,
e_mod
,
e_max
,
e_min
,
e_eq
,
e_gt
,
e_gte
,
e_lte
,
e_lt
,
e_pow
,
e_mul
,
e_div
,
e_add
,
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_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_sqrt
,
e_not
,
e_random
,
e_hypot
,
e_gcd
,
...
@@ -275,6 +275,8 @@ static double eval_expr(Parser *p, AVExpr *e)
...
@@ -275,6 +275,8 @@ static double eval_expr(Parser *p, AVExpr *e)
case
e_eq
:
return
e
->
value
*
(
d
==
d2
?
1
.
0
:
0
.
0
);
case
e_eq
:
return
e
->
value
*
(
d
==
d2
?
1
.
0
:
0
.
0
);
case
e_gt
:
return
e
->
value
*
(
d
>
d2
?
1
.
0
:
0
.
0
);
case
e_gt
:
return
e
->
value
*
(
d
>
d2
?
1
.
0
:
0
.
0
);
case
e_gte
:
return
e
->
value
*
(
d
>=
d2
?
1
.
0
:
0
.
0
);
case
e_gte
:
return
e
->
value
*
(
d
>=
d2
?
1
.
0
:
0
.
0
);
case
e_lt
:
return
e
->
value
*
(
d
<
d2
?
1
.
0
:
0
.
0
);
case
e_lte
:
return
e
->
value
*
(
d
<=
d2
?
1
.
0
:
0
.
0
);
case
e_pow
:
return
e
->
value
*
pow
(
d
,
d2
);
case
e_pow
:
return
e
->
value
*
pow
(
d
,
d2
);
case
e_mul
:
return
e
->
value
*
(
d
*
d2
);
case
e_mul
:
return
e
->
value
*
(
d
*
d2
);
case
e_div
:
return
e
->
value
*
((
!
CONFIG_FTRAPV
||
d2
)
?
(
d
/
d2
)
:
d
*
INFINITY
);
case
e_div
:
return
e
->
value
*
((
!
CONFIG_FTRAPV
||
d2
)
?
(
d
/
d2
)
:
d
*
INFINITY
);
...
@@ -401,8 +403,8 @@ static int parse_primary(AVExpr **e, Parser *p)
...
@@ -401,8 +403,8 @@ static int parse_primary(AVExpr **e, Parser *p)
else
if
(
strmatch
(
next
,
"eq"
))
d
->
type
=
e_eq
;
else
if
(
strmatch
(
next
,
"eq"
))
d
->
type
=
e_eq
;
else
if
(
strmatch
(
next
,
"gte"
))
d
->
type
=
e_gte
;
else
if
(
strmatch
(
next
,
"gte"
))
d
->
type
=
e_gte
;
else
if
(
strmatch
(
next
,
"gt"
))
d
->
type
=
e_gt
;
else
if
(
strmatch
(
next
,
"gt"
))
d
->
type
=
e_gt
;
else
if
(
strmatch
(
next
,
"lte"
))
{
AVExpr
*
tmp
=
d
->
param
[
1
];
d
->
param
[
1
]
=
d
->
param
[
0
];
d
->
param
[
0
]
=
tmp
;
d
->
type
=
e_gte
;
}
else
if
(
strmatch
(
next
,
"lte"
))
d
->
type
=
e_lte
;
else
if
(
strmatch
(
next
,
"lt"
))
{
AVExpr
*
tmp
=
d
->
param
[
1
];
d
->
param
[
1
]
=
d
->
param
[
0
];
d
->
param
[
0
]
=
tmp
;
d
->
type
=
e_gt
;
}
else
if
(
strmatch
(
next
,
"lt"
))
d
->
type
=
e_lt
;
else
if
(
strmatch
(
next
,
"ld"
))
d
->
type
=
e_ld
;
else
if
(
strmatch
(
next
,
"ld"
))
d
->
type
=
e_ld
;
else
if
(
strmatch
(
next
,
"isnan"
))
d
->
type
=
e_isnan
;
else
if
(
strmatch
(
next
,
"isnan"
))
d
->
type
=
e_isnan
;
else
if
(
strmatch
(
next
,
"isinf"
))
d
->
type
=
e_isinf
;
else
if
(
strmatch
(
next
,
"isinf"
))
d
->
type
=
e_isinf
;
...
...
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