From 738e9402d2e8e97b94dd76cd740aa6da8970da2d Mon Sep 17 00:00:00 2001 From: Johns Date: Mon, 15 Jul 2013 16:58:36 +0200 Subject: [PATCH] Report synced as info and not as debug message. --- video.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/video.c b/video.c index d22cf2a..ea8a890 100644 --- a/video.c +++ b/video.c @@ -4892,7 +4892,7 @@ static void VaapiSyncDecoder(VaapiDecoder * decoder) Debug(3, "video/vaapi: synced after %d frames %dms\n", decoder->StartCounter, GetMsTicks() - VideoSwitch); #else - Debug(3, "video/vaapi: synced after %d frames\n", + Info("video/vaapi: synced after %d frames\n", decoder->StartCounter); #endif decoder->StartCounter += 1000; @@ -8453,7 +8453,7 @@ static void VdpauSyncDecoder(VdpauDecoder * decoder) Debug(3, "video/vdpau: synced after %d frames %dms\n", decoder->StartCounter, GetMsTicks() - VideoSwitch); #else - Debug(3, "video/vdpau: synced after %d frames\n", + Info("video/vdpau: synced after %d frames\n", decoder->StartCounter); #endif decoder->StartCounter += 1000;