summaryrefslogtreecommitdiff
path: root/video.c
diff options
context:
space:
mode:
authorJohns <johns98@gmx.net>2015-09-30 11:16:50 +0200
committerJohns <johns98@gmx.net>2015-09-30 11:16:50 +0200
commit93981031aa8d542f7c6778deaba7fe62beb2af69 (patch)
tree163874e3a50115accc1527cb2c9bcbf575b5de8e /video.c
parent509329c90a524600be720ed332574fbf6454735e (diff)
downloadvdr-plugin-softhddevice-93981031aa8d542f7c6778deaba7fe62beb2af69.tar.gz
vdr-plugin-softhddevice-93981031aa8d542f7c6778deaba7fe62beb2af69.tar.bz2
Calculate queued output surfaces and show them in info message.
Diffstat (limited to 'video.c')
-rw-r--r--video.c32
1 files changed, 28 insertions, 4 deletions
diff --git a/video.c b/video.c
index 3a76f08..d79e45a 100644
--- a/video.c
+++ b/video.c
@@ -5862,6 +5862,7 @@ static VdpChromaType VdpauChromaType; ///< best video surface chroma format
/// display surface ring buffer
static VdpOutputSurface VdpauSurfacesRb[OUTPUT_SURFACES_MAX];
static int VdpauSurfaceIndex; ///< current display surface
+static int VdpauSurfaceQueued; ///< number of display surfaces queued
static struct timespec VdpauFrameTime; ///< time of last display
#ifdef USE_BITMAP
@@ -8586,7 +8587,29 @@ static void VdpauDisplayFrame(void)
}
}
//
- // wait for surface visible (blocks max ~5ms)
+ // check how many surfaces are queued
+ //
+ VdpauSurfaceQueued = 0;
+ for (i = 0; i < OUTPUT_SURFACES_MAX; ++i) {
+ VdpPresentationQueueStatus qstatus;
+
+ status =
+ VdpauPresentationQueueQuerySurfaceStatus(VdpauQueue,
+ VdpauSurfacesRb[(VdpauSurfaceIndex + i) % OUTPUT_SURFACES_MAX],
+ &qstatus, &first_time);
+ if (status != VDP_STATUS_OK) {
+ Error(_("video/vdpau: can't query status: %s\n"),
+ VdpauGetErrorString(status));
+ break;
+ }
+ if (qstatus == VDP_PRESENTATION_QUEUE_STATUS_IDLE) {
+ continue;
+ }
+ // STATUS_QUEUED | STATUS_VISIBLE
+ VdpauSurfaceQueued++;
+ }
+ //
+ // wait for surface no longer visible (blocks max ~5ms)
//
status =
VdpauPresentationQueueBlockUntilSurfaceIdle(VdpauQueue,
@@ -8912,14 +8935,15 @@ static void VdpauSyncDecoder(VdpauDecoder * decoder)
if (!err) {
VdpauMessage(0, NULL);
}
- Info("video: %s%+5" PRId64 " %4" PRId64 " %3d/\\ms %3d%+d v-buf\n",
+ Info("video: %s%+5" PRId64 " %4" PRId64 " %3d/\\ms %3d%+d%+d v-buf\n",
Timestamp2String(video_clock),
abs((video_clock - audio_clock) / 90) <
8888 ? ((video_clock - audio_clock) / 90) : 8888,
AudioGetDelay() / 90, (int)VideoDeltaPTS / 90,
VideoGetBuffers(decoder->Stream),
- (1 + decoder->Interlaced) * atomic_read(&decoder->SurfacesFilled)
- - decoder->SurfaceField);
+ decoder->Interlaced ? 2 * atomic_read(&decoder->SurfacesFilled)
+ - decoder->SurfaceField : atomic_read(&decoder->SurfacesFilled),
+ VdpauSurfaceQueued);
if (!(decoder->FramesDisplayed % (5 * 60 * 60))) {
VdpauPrintFrames(decoder);
}