summaryrefslogtreecommitdiffstats
path: root/video/decode/dec_video.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-02-24 23:15:11 +0100
committerwm4 <wm4@nowhere>2013-02-26 01:55:52 +0100
commit281e10f05d02d1afe24f644a2d8b1672113630fd (patch)
tree31ea51f383241c0fac628c87666760bd5eac7cd1 /video/decode/dec_video.c
parent8884ac9f793b1a76683783d346736eedfd9975c6 (diff)
downloadmpv-281e10f05d02d1afe24f644a2d8b1672113630fd.tar.bz2
mpv-281e10f05d02d1afe24f644a2d8b1672113630fd.tar.xz
dec_video: remove weird offset for VDCTRL_QUERY_UNSEEN_FRAMES
The return value of get_current_video_decoder_lag() should be the same before and after this change in all cases.
Diffstat (limited to 'video/decode/dec_video.c')
-rw-r--r--video/decode/dec_video.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/video/decode/dec_video.c b/video/decode/dec_video.c
index 4ee1e4cae3..9888881e26 100644
--- a/video/decode/dec_video.c
+++ b/video/decode/dec_video.c
@@ -172,10 +172,9 @@ int get_current_video_decoder_lag(sh_video_t *sh_video)
const struct vd_functions *vd = sh_video->vd_driver;
if (!vd)
return -1;
- int ret = vd->control(sh_video, VDCTRL_QUERY_UNSEEN_FRAMES, NULL);
- if (ret >= 10)
- return ret - 10;
- return -1;
+ int ret = -1;
+ vd->control(sh_video, VDCTRL_QUERY_UNSEEN_FRAMES, &ret);
+ return ret;
}
void uninit_video(sh_video_t *sh_video)