mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-24 15:57:00 +00:00
avfilter/vf_idet: use av_rescale()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
5d590d87b3
commit
4bbd8f05f7
@ -173,8 +173,8 @@ static void filter(AVFilterContext *ctx)
|
||||
|
||||
|
||||
for(i=0; i<4; i++){
|
||||
idet->prestat [i] = (idet->decay_coefficient * idet->prestat [i]) / PRECISION;
|
||||
idet->poststat[i] = (idet->decay_coefficient * idet->poststat[i]) / PRECISION;
|
||||
idet->prestat [i] = av_rescale(idet->prestat [i], idet->decay_coefficient, PRECISION);
|
||||
idet->poststat[i] = av_rescale(idet->poststat[i], idet->decay_coefficient, PRECISION);
|
||||
}
|
||||
|
||||
idet->total_prestat [ type] ++;
|
||||
|
Loading…
Reference in New Issue
Block a user