Browse Source

ffprobe: reindent after previous commit

tags/n0.10
Stefano Sabatini 13 years ago
parent
commit
eef4b70450
1 changed files with 12 additions and 12 deletions
  1. +12
    -12
      ffprobe.c

+ 12
- 12
ffprobe.c View File

@@ -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))


Loading…
Cancel
Save