summaryrefslogtreecommitdiff
path: root/video.c
diff options
context:
space:
mode:
authorJohns <johns98@gmx.net>2012-07-05 23:59:28 +0200
committerJohns <johns98@gmx.net>2012-07-05 23:59:28 +0200
commit2d6d151b85a66c08eccdb6891433d1d12b23faee (patch)
treebbb05bbb20b9e0163cb5fa879319865edc99c5b9 /video.c
parentca4f519a1f8ceb71fc800cdee6c9a0f6832218ab (diff)
downloadvdr-plugin-softhddevice-2d6d151b85a66c08eccdb6891433d1d12b23faee.tar.gz
vdr-plugin-softhddevice-2d6d151b85a66c08eccdb6891433d1d12b23faee.tar.bz2
Fix compiler warnings.
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 62440d1..41b25ec 100644
--- a/video.c
+++ b/video.c
@@ -7760,8 +7760,8 @@ static void VdpauDisplayFrame(void)
// FIXME: 21 only correct for 50Hz
if (last_time && first_time > last_time + 21 * 1000 * 1000) {
// FIXME: ignore still-frame, trick-speed
- Debug(3, "video/vdpau: %ld display time %ld\n", first_time / 1000,
- (first_time - last_time) / 1000);
+ Debug(3, "video/vdpau: %" PRId64 " display time %" PRId64 "\n",
+ first_time / 1000, (first_time - last_time) / 1000);
// FIXME: can be more than 1 frame long shown
for (i = 0; i < VdpauDecoderN; ++i) {
VdpauDecoders[i]->FramesMissed++;