summaryrefslogtreecommitdiff
path: root/video.c
diff options
context:
space:
mode:
Diffstat (limited to 'video.c')
-rw-r--r--video.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/video.c b/video.c
index f5c6050..7d8af37 100644
--- a/video.c
+++ b/video.c
@@ -5833,9 +5833,9 @@ void VideoDrawRenderState(VideoHwDecoder * decoder,
Error(_("video/vdpau: decoder rendering failed: %s\n"),
VdpauGetErrorString(status));
}
- if (start - end > 35) {
+ if (end - start > 35) {
Debug(3, "video/vdpau: decoder render too slow %u ms\n",
- start - end);
+ end - start);
}
return;
}