Commit ed3da725 authored by Sebastian Dröge's avatar Sebastian Dröge Committed by Kyle Swanson

s->target_i and global are in dB but s->target_tp and true_peak are

linear. Instead of mixing these in the calculations, convert the former
first to have all following calculations in the same unit.
Signed-off-by: 's avatarKyle Swanson <k@ylo.ph>
parent 9ce7de90
......@@ -453,10 +453,9 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
true_peak = tmp;
}
offset = s->target_i - global;
offset_tp = true_peak + offset;
offset = pow(10., (s->target_i - global) / 20.);
offset_tp = true_peak * offset;
s->offset = offset_tp < s->target_tp ? offset : s->target_tp - true_peak;
s->offset = pow(10., s->offset / 20.);
s->frame_type = LINEAR_MODE;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment