Skip to content
Snippets Groups Projects
Commit 67777ef1 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Reduce scan count to three times a second

parent fc0a438a
No related branches found
No related tags found
No related merge requests found
Pipeline #13633 passed
...@@ -210,7 +210,7 @@ export class QrCodeScanner extends ScopedElementsMixin(DBPLitElement) { ...@@ -210,7 +210,7 @@ export class QrCodeScanner extends ScopedElementsMixin(DBPLitElement) {
} }
const that = this; const that = this;
let lastVideoTime = -1; let lastVideoScanTime = -1;
let lastCode = null; let lastCode = null;
let lastSentData = null; let lastSentData = null;
...@@ -307,9 +307,9 @@ export class QrCodeScanner extends ScopedElementsMixin(DBPLitElement) { ...@@ -307,9 +307,9 @@ export class QrCodeScanner extends ScopedElementsMixin(DBPLitElement) {
let code = null; let code = null;
// We only check for QR codes 5 times a second to improve performance // We only check for QR codes 5 times a second to improve performance
let shouldAnalyze = Math.abs(lastVideoTime - video.currentTime) >= 1/5; let shouldAnalyze = Math.abs(lastVideoScanTime - video.currentTime) >= 1/3;
if (shouldAnalyze) { if (shouldAnalyze) {
lastVideoTime = video.currentTime; lastVideoScanTime = video.currentTime;
code = jsQR(imageData.data, imageData.width, imageData.height, { code = jsQR(imageData.data, imageData.width, imageData.height, {
inversionAttempts: "dontInvert", inversionAttempts: "dontInvert",
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment