aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-04-16 02:06:37 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-06-23 18:16:21 +0200
commit8d60d8bef228321a86cc62a9a2e0de975dbe78d7 (patch)
tree0d6a314826090356d8063b4cd800c5e18538fb2c
parent53c02d04e49591ae128efd94fbc645907ae1b935 (diff)
downloadffmpeg-8d60d8bef228321a86cc62a9a2e0de975dbe78d7.tar.gz
avfilter/vf_deshake: fix loss of precission with odd resolutions
Fixes part of Ticket3466 Found-by: Andrey_Karpov / PVS-Studio Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 73734282e0e4df92269984ee1671424e39249481) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavfilter/vf_deshake.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_deshake.c b/libavfilter/vf_deshake.c
index 26f92f4dff..f9e42ac191 100644
--- a/libavfilter/vf_deshake.c
+++ b/libavfilter/vf_deshake.c
@@ -346,8 +346,8 @@ static void find_motion(DeshakeContext *deshake, uint8_t *src1, uint8_t *src2,
//av_log(NULL, AV_LOG_ERROR, "\n");
}
- p_x = (center_x - width / 2);
- p_y = (center_y - height / 2);
+ p_x = (center_x - width / 2.0);
+ p_y = (center_y - height / 2.0);
t->vector.x += (cos(t->angle)-1)*p_x - sin(t->angle)*p_y;
t->vector.y += sin(t->angle)*p_x + (cos(t->angle)-1)*p_y;