mirror of
https://projects.vdr-developer.org/git/vdr-plugin-softhddevice.git
synced 2023-10-10 19:16:51 +02:00
Fix bug: swapped end and start.
This commit is contained in:
parent
7f0ad63209
commit
a5c28b9fe2
4
video.c
4
video.c
@ -5833,9 +5833,9 @@ void VideoDrawRenderState(VideoHwDecoder * decoder,
|
|||||||
Error(_("video/vdpau: decoder rendering failed: %s\n"),
|
Error(_("video/vdpau: decoder rendering failed: %s\n"),
|
||||||
VdpauGetErrorString(status));
|
VdpauGetErrorString(status));
|
||||||
}
|
}
|
||||||
if (start - end > 35) {
|
if (end - start > 35) {
|
||||||
Debug(3, "video/vdpau: decoder render too slow %u ms\n",
|
Debug(3, "video/vdpau: decoder render too slow %u ms\n",
|
||||||
start - end);
|
end - start);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user