Fix bug: swapped end and start.

This commit is contained in:
Johns 2011-12-25 17:23:29 +01:00
parent 7f0ad63209
commit a5c28b9fe2
1 changed files with 2 additions and 2 deletions

View File

@ -5833,9 +5833,9 @@ void VideoDrawRenderState(VideoHwDecoder * decoder,
Error(_("video/vdpau: decoder rendering failed: %s\n"),
VdpauGetErrorString(status));
}
if (start - end > 35) {
if (end - start > 35) {
Debug(3, "video/vdpau: decoder render too slow %u ms\n",
start - end);
end - start);
}
return;
}