From ac3845c79dee015137bc34741b456b1445150ffe Mon Sep 17 00:00:00 2001 From: jojo61 Date: Sun, 19 Aug 2018 12:37:16 +0200 Subject: [PATCH] removed debug print --- video.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/video.c b/video.c index d00959b..24fde59 100644 --- a/video.c +++ b/video.c @@ -3056,9 +3056,9 @@ static void CuvidAdvanceDecoderFrame(CuvidDecoder * decoder) // keep use of last surface ++decoder->FramesDuped; // FIXME: don't warn after stream start, don't warn during pause - printf("video: display buffer empty, duping frame (%d/%d) %d\n", - decoder->FramesDuped, decoder->FrameCounter, - VideoGetBuffers(decoder->Stream)); +// printf("video: display buffer empty, duping frame (%d/%d) %d\n", +// decoder->FramesDuped, decoder->FrameCounter, +// VideoGetBuffers(decoder->Stream)); return; } decoder->SurfaceRead = (decoder->SurfaceRead + 1) % VIDEO_SURFACES_MAX;