Commit 898635ad authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_idet: use exp2()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 4bbd8f05
......@@ -324,7 +324,7 @@ static av_cold int init(AVFilterContext *ctx)
memset(idet->history, UNDETERMINED, HIST_SIZE);
if( idet->half_life > 0 )
idet->decay_coefficient = (uint64_t) round( PRECISION * pow(2.0,-1.0 / idet->half_life) );
idet->decay_coefficient = (uint64_t) round( PRECISION * exp2(-1.0 / idet->half_life) );
else
idet->decay_coefficient = PRECISION;
......
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