Merge pull request #300 from fryshorts/audio-perf

libobs: Replace fmaxf with inline comparison.
master
Jim 2014-11-17 10:27:38 -08:00
commit b3312a7657
1 changed files with 1 additions and 1 deletions

View File

@ -655,7 +655,7 @@ static void calc_volume_levels(struct obs_source *source, float *array,
float val_pow2 = val * val;
sum_val += val_pow2;
max_val = fmaxf(max_val, val_pow2);
max_val = (max_val > val_pow2) ? max_val : val_pow2;
}
/*