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
324e7ee2
Commit
324e7ee2
authored
Oct 18, 2010
by
Mans Rullgard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use INFINITY and NAN macros instead of 1/0 and 0/0
parent
f318ee3e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
cmdutils.c
cmdutils.c
+1
-1
intfloat_readwrite.c
libavutil/intfloat_readwrite.c
+4
-4
No files found.
cmdutils.c
View file @
324e7ee2
...
...
@@ -198,7 +198,7 @@ unknown_opt:
}
else
if
(
po
->
flags
&
OPT_INT64
)
{
*
po
->
u
.
int64_arg
=
parse_number_or_die
(
opt
,
arg
,
OPT_INT64
,
INT64_MIN
,
INT64_MAX
);
}
else
if
(
po
->
flags
&
OPT_FLOAT
)
{
*
po
->
u
.
float_arg
=
parse_number_or_die
(
opt
,
arg
,
OPT_FLOAT
,
-
1
.
0
/
0
.
0
,
1
.
0
/
0
.
0
);
*
po
->
u
.
float_arg
=
parse_number_or_die
(
opt
,
arg
,
OPT_FLOAT
,
-
INFINITY
,
INFINITY
);
}
else
if
(
po
->
flags
&
OPT_FUNC2
)
{
if
(
po
->
u
.
func2_arg
(
opt
,
arg
)
<
0
)
{
fprintf
(
stderr
,
"%s: failed to set value '%s' for option '%s'
\n
"
,
argv
[
0
],
arg
,
opt
);
...
...
libavutil/intfloat_readwrite.c
View file @
324e7ee2
...
...
@@ -31,13 +31,13 @@
double
av_int2dbl
(
int64_t
v
){
if
(
v
+
v
>
0xFFEULL
<<
52
)
return
0
.
0
/
0
.
0
;
return
NAN
;
return
ldexp
(((
v
&
((
1LL
<<
52
)
-
1
))
+
(
1LL
<<
52
))
*
(
v
>>
63
|
1
),
(
v
>>
52
&
0x7FF
)
-
1075
);
}
float
av_int2flt
(
int32_t
v
){
if
(
v
+
v
>
0xFF000000U
)
return
0
.
0
/
0
.
0
;
return
NAN
;
return
ldexp
(((
v
&
0x7FFFFF
)
+
(
1
<<
23
))
*
(
v
>>
31
|
1
),
(
v
>>
23
&
0xFF
)
-
150
);
}
...
...
@@ -49,7 +49,7 @@ double av_ext2dbl(const AVExtFloat ext){
m
=
(
m
<<
8
)
+
ext
.
mantissa
[
i
];
e
=
(((
int
)
ext
.
exponent
[
0
]
&
0x7f
)
<<
8
)
|
ext
.
exponent
[
1
];
if
(
e
==
0x7fff
&&
m
)
return
0
.
0
/
0
.
0
;
return
NAN
;
e
-=
16383
+
63
;
/* In IEEE 80 bits, the whole (i.e. 1.xxxx)
* mantissa bit is written as opposed to the
* single and double precision formats. */
...
...
@@ -88,7 +88,7 @@ AVExtFloat av_dbl2ext(double d){
ext
.
mantissa
[
i
]
=
m
>>
(
56
-
(
i
<<
3
));
}
else
if
(
f
!=
0
.
0
)
{
ext
.
exponent
[
0
]
=
0x7f
;
ext
.
exponent
[
1
]
=
0xff
;
if
(
f
!=
1
/
0
.
0
)
if
(
f
!=
INFINITY
)
ext
.
mantissa
[
0
]
=
~
0
;
}
if
(
d
<
0
)
...
...
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