diff options
author | Johns <johns98@gmx.net> | 2013-07-15 16:58:36 +0200 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2013-07-15 16:58:36 +0200 |
commit | 738e9402d2e8e97b94dd76cd740aa6da8970da2d (patch) | |
tree | e2713f4922f2ba7b976761d23ae468238b94985f /video.c | |
parent | 34fd275b42d91f8638268d551a4726eeac2c273a (diff) | |
download | vdr-plugin-softhddevice-738e9402d2e8e97b94dd76cd740aa6da8970da2d.tar.gz vdr-plugin-softhddevice-738e9402d2e8e97b94dd76cd740aa6da8970da2d.tar.bz2 |
Report synced as info and not as debug message.
Diffstat (limited to 'video.c')
-rw-r--r-- | video.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |