summaryrefslogtreecommitdiffstats
path: root/video/out/gl_video.c
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2015-02-13 15:22:53 +0100
committerStefano Pigozzi <stefano.pigozzi@gmail.com>2015-02-13 20:39:53 +0100
commit3931544ef33196e1966c416cc0d60d4160cf27fb (patch)
treed1c3bf1ebc7fc1a71a32f3194cc59906befdb1f3 /video/out/gl_video.c
parent9e14042e575435e94da660823d14aa6a6b6cb668 (diff)
downloadmpv-3931544ef33196e1966c416cc0d60d4160cf27fb.tar.bz2
mpv-3931544ef33196e1966c416cc0d60d4160cf27fb.tar.xz
vo_opengl: fix smoothmotion coefficient calculation
Using prev_pts as the start of the scale was plain wrong. Change it to prev_vsync.
Diffstat (limited to 'video/out/gl_video.c')
-rw-r--r--video/out/gl_video.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/video/out/gl_video.c b/video/out/gl_video.c
index c23e6ac436..1c70d56674 100644
--- a/video/out/gl_video.c
+++ b/video/out/gl_video.c
@@ -1749,15 +1749,11 @@ static void gl_video_interpolate_frame(struct gl_video *p,
gl->ActiveTexture(GL_TEXTURE0 + 1);
gl->BindTexture(p->gl_target, p->surfaces[p->surface_idx].fbotex.texture);
gl->ActiveTexture(GL_TEXTURE0);
- MP_DBG(p, "frame ppts: %lld, pts: %lld, vsync: %lld, DIFF: %lld\n",
- (long long)prev_pts, (long long)t->pts,
- (long long)t->next_vsync, (long long)t->next_vsync - t->pts);
if (prev_pts < t->next_vsync && t->pts > t->next_vsync) {
- double N = t->next_vsync - prev_pts;
- double P = t->pts - prev_pts;
- double prev_pts_component = N / P;
+ double N = t->next_vsync - t->prev_vsync;
+ double P = t->pts - t->prev_vsync;
float ts = p->opts.smoothmotion_threshold;
- inter_coeff = 1 - prev_pts_component;
+ inter_coeff = 1 - (N / P);
inter_coeff = inter_coeff < 0.0 + ts ? 0.0 : inter_coeff;
inter_coeff = inter_coeff > 1.0 - ts ? 1.0 : inter_coeff;
MP_DBG(p, "inter frame ppts: %lld, pts: %lld, "