mirror of
https://github.com/xdsopl/robot36.git
synced 2026-01-06 08:19:57 +01:00
increased scan line count to four
This commit is contained in:
parent
26073e1e2b
commit
d3c2c2bec3
|
|
@ -43,7 +43,7 @@ public class Decoder {
|
|||
double scanLineMaxSeconds = 5;
|
||||
int scanLineMaxSamples = (int) Math.round(scanLineMaxSeconds * sampleRate);
|
||||
scanLineBuffer = new float[scanLineMaxSamples];
|
||||
int scanLineCount = 3;
|
||||
int scanLineCount = 4;
|
||||
last5msScanLines = new int[scanLineCount];
|
||||
last9msScanLines = new int[scanLineCount];
|
||||
last20msScanLines = new int[scanLineCount];
|
||||
|
|
|
|||
Loading…
Reference in a new issue