diff options
author | Johns <johns98@gmx.net> | 2012-01-04 16:58:35 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2012-01-04 16:58:35 +0100 |
commit | 0f449c239443c157d1be2a82fe43ae3926a2a23e (patch) | |
tree | cecb9bd22b84cf43a41855bfe6de594ce03fb9b2 | |
parent | 9a30d387a17b1c94cd3a7106555702c7cad93b22 (diff) | |
download | vdr-plugin-softhddevice-0f449c239443c157d1be2a82fe43ae3926a2a23e.tar.gz vdr-plugin-softhddevice-0f449c239443c157d1be2a82fe43ae3926a2a23e.tar.bz2 |
Remove warnings, reduce debug informations.
-rw-r--r-- | softhddev.c | 3 | ||||
-rw-r--r-- | video.c | 32 |
2 files changed, 25 insertions, 10 deletions
diff --git a/softhddev.c b/softhddev.c index ff6a17d..ed73ae8 100644 --- a/softhddev.c +++ b/softhddev.c @@ -183,7 +183,8 @@ static int FindAudioSync(const AVPacket * avpkt) ** @param size size of PES packet ** @param id PES packet type */ -void PlayAudio(const uint8_t * data, int size, uint8_t id) +void PlayAudio(const uint8_t * data, int size, + __attribute__ ((unused)) uint8_t id) { int n; AVPacket avpkt[1]; @@ -1002,6 +1002,9 @@ static void VaapiPrintFrames(const VaapiDecoder * decoder) Debug(3, "video/vaapi: %d missed, %d duped, %d dropped frames of %d\n", decoder->FramesMissed, decoder->FramesDuped, decoder->FramesDropped, decoder->FrameCounter); +#ifndef DEBUG + (void)decoder; +#endif } /// @@ -1972,7 +1975,7 @@ static void VaapiQueueSurface(VaapiDecoder * decoder, VASurfaceID surface, ++decoder->FramesDropped; Warning(_("video: output buffer full, dropping frame (%d/%d)\n"), decoder->FramesDropped, decoder->FrameCounter); - if (!(decoder->FramesDisplayed % 100)) { + if (!(decoder->FramesDisplayed % 300)) { VaapiPrintFrames(decoder); } if (softdec) { // software surfaces only @@ -2661,7 +2664,7 @@ static void VaapiSyncDisplayFrame(VaapiDecoder * decoder) decoder->FramesDuped++; Warning(_("video: display buffer empty, duping frame (%d/%d)\n"), decoder->FramesDuped, decoder->FrameCounter); - if (!(decoder->FramesDisplayed % 333)) { + if (!(decoder->FramesDisplayed % 300)) { VaapiPrintFrames(decoder); } } @@ -2725,7 +2728,7 @@ static void VaapiSyncRenderFrame(VaapiDecoder * decoder, ++decoder->FramesDropped; Warning(_("video: dropping frame (%d/%d)\n"), decoder->FramesDropped, decoder->FrameCounter); - if (!(decoder->FramesDisplayed % 100)) { + if (!(decoder->FramesDisplayed % 300)) { VaapiPrintFrames(decoder); } decoder->DropNextFrame = 0; @@ -3361,6 +3364,9 @@ static void VdpauPrintFrames(const VdpauDecoder * decoder) Debug(3, "video/vdpau: %d missed, %d duped, %d dropped frames of %d\n", decoder->FramesMissed, decoder->FramesDuped, decoder->FramesDropped, decoder->FrameCounter); +#ifndef DEBUG + (void)decoder; +#endif } /// @@ -4352,7 +4358,9 @@ static void VdpauQueueSurface(VdpauDecoder * decoder, VdpVideoSurface surface, Warning(_ ("video/vdpau: output buffer full, dropping frame (%d/%d)\n"), ++decoder->FramesDropped, decoder->FrameCounter); - VdpauPrintFrames(decoder); + if (!(decoder->FramesDisplayed % 300)) { + VdpauPrintFrames(decoder); + } // software surfaces only if (softdec) { VdpauReleaseSurface(decoder, surface); @@ -4778,7 +4786,7 @@ static void VdpauAdvanceFrame(void) Warning(_ ("video: display buffer empty, duping frame (%d/%d)\n"), decoder->FramesDuped, decoder->FrameCounter); - if (!(decoder->FramesDisplayed % 333)) { + if (!(decoder->FramesDisplayed % 300)) { VdpauPrintFrames(decoder); } decoder->SurfaceField = decoder->Interlaced; @@ -4825,7 +4833,12 @@ static void VdpauDisplayFrame(void) // FIXME: can be more than 1 frame long shown for (i = 0; i < VdpauDecoderN; ++i) { VdpauDecoders[i]->FramesMissed++; - VdpauPrintFrames(VdpauDecoders[i]); + Warning(_("video: missed frame (%d/%d)\n"), + VdpauDecoders[i]->FramesMissed, + VdpauDecoders[i]->FrameCounter); + if (!(VdpauDecoders[i]->FramesDisplayed % 300)) { + VdpauPrintFrames(VdpauDecoders[i]); + } } } last_time = first_time; @@ -4899,7 +4912,7 @@ static void VdpauSyncDisplayFrame(VdpauDecoder * decoder) decoder->FramesDuped++; Warning(_("video: display buffer empty, duping frame (%d/%d)\n"), decoder->FramesDuped, decoder->FrameCounter); - if (!(decoder->FramesDisplayed % 333)) { + if (!(decoder->FramesDisplayed % 300)) { VdpauPrintFrames(decoder); } } @@ -4964,7 +4977,7 @@ static void VdpauSyncRenderFrame(VdpauDecoder * decoder, ++decoder->FramesDropped; Warning(_("video: dropping frame (%d/%d)\n"), decoder->FramesDropped, decoder->FrameCounter); - if (!(decoder->FramesDisplayed % 100)) { + if (!(decoder->FramesDisplayed % 300)) { VdpauPrintFrames(decoder); } decoder->DropNextFrame = 0; @@ -5996,7 +6009,8 @@ void VideoDrawRenderState(VideoHwDecoder * decoder, VdpauGetErrorString(status)); } if (end - start > 35) { - Debug(3, "video/vdpau: decoder render too slow %u ms\n", + // report this + Info(_("video/vdpau: decoder render too slow %u ms\n"), end - start); } return; |