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
b027156b
Commit
b027156b
authored
Sep 09, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffprobe: use exp2 instead of pow(2, ...)
parent
363d302e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
ffprobe.c
ffprobe.c
+1
-1
No files found.
ffprobe.c
View file @
b027156b
...
...
@@ -124,7 +124,7 @@ static char *value_string(char *buf, int buf_size, struct unit_value uv)
if
(
uv
.
unit
==
unit_byte_str
&&
use_byte_value_binary_prefix
)
{
index
=
(
long
long
int
)
(
log2
(
vald
))
/
10
;
index
=
av_clip
(
index
,
0
,
FF_ARRAY_ELEMS
(
binary_unit_prefixes
)
-
1
);
vald
/=
pow
(
2
,
index
*
10
);
vald
/=
exp2
(
index
*
10
);
prefix_string
=
binary_unit_prefixes
[
index
];
}
else
{
index
=
(
long
long
int
)
(
log10
(
vald
))
/
3
;
...
...
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