summaryrefslogtreecommitdiff
path: root/ffprobe.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-01-18 19:28:31 +0100
committerStefano Sabatini <stefasab@gmail.com>2012-01-20 13:27:46 +0100
commiteef4b70450b5ed57a5c57a719d31b8ca14532bc9 (patch)
tree45259691fa04b0c0963417f6a237480d123e3bdc /ffprobe.c
parent58b10b4c7ea568a7829a62be889e89aaa26da734 (diff)
ffprobe: reindent after previous commit
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/ffprobe.c b/ffprobe.c
index bd88267ca4..ce4883b3bb 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -107,19 +107,19 @@ static char *value_string(char *buf, int buf_size, struct unit_value uv)
int l;
if (use_value_prefix) {
- long long int index;
+ long long int index;
- if (uv.unit == unit_byte_str && use_byte_value_binary_prefix) {
- index = (long long int) (log(vald)/log(2)) / 10;
- index = av_clip(index, 0, FF_ARRAY_ELEMS(binary_unit_prefixes) - 1);
- vald /= pow(2, index * 10);
- prefix_string = binary_unit_prefixes[index];
- } else {
- index = (long long int) (log10(vald)) / 3;
- index = av_clip(index, 0, FF_ARRAY_ELEMS(decimal_unit_prefixes) - 1);
- vald /= pow(10, index * 3);
- prefix_string = decimal_unit_prefixes[index];
- }
+ if (uv.unit == unit_byte_str && use_byte_value_binary_prefix) {
+ index = (long long int) (log(vald)/log(2)) / 10;
+ index = av_clip(index, 0, FF_ARRAY_ELEMS(binary_unit_prefixes) - 1);
+ vald /= pow(2, index * 10);
+ prefix_string = binary_unit_prefixes[index];
+ } else {
+ index = (long long int) (log10(vald)) / 3;
+ index = av_clip(index, 0, FF_ARRAY_ELEMS(decimal_unit_prefixes) - 1);
+ vald /= pow(10, index * 3);
+ prefix_string = decimal_unit_prefixes[index];
+ }
}
if (show_float || (use_value_prefix && vald != (long long int)vald))