Skip to content

Commit

Permalink
ffprobe: use exp2 instead of pow(2, ...)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelni committed Sep 9, 2012
1 parent 363d302 commit b027156
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ffprobe.c
Expand Up @@ -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;
Expand Down

0 comments on commit b027156

Please sign in to comment.