1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

lavfi/select: 10l: llabs -> fabs after switching types.

This commit is contained in:
Clément Bœsch 2012-06-05 00:17:38 +02:00
parent 9c4821ca7b
commit 13a7bd70c8

View File

@ -207,7 +207,7 @@ static double get_scene_score(AVFilterContext *ctx, AVFilterBufferRef *picref)
linesize, 8);
emms_c();
mafd = sad / (picref->video->h * picref->video->w * 3);
diff = llabs(mafd - select->prev_mafd);
diff = fabs(mafd - select->prev_mafd);
ret = av_clipf(FFMIN(mafd, diff) / 100., 0, 1);
select->prev_mafd = mafd;
avfilter_unref_buffer(prev_picref);