mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-01-02 23:00:16 +01:00
increase the buffer again
This commit is contained in:
parent
166cad816c
commit
3e25bced56
|
|
@ -85,7 +85,7 @@ class Dablin(BaseDemodulatorChain, FixedIfSampleRateChain, FixedAudioRateChain,
|
|||
def _connect(self, w1, w2, buffer: Optional[Buffer] = None) -> None:
|
||||
if isinstance(w2, EtiDecoder):
|
||||
# eti decoder needs big chunks of data
|
||||
buffer = Buffer(w1.getOutputFormat(), size=1048576)
|
||||
buffer = Buffer(w1.getOutputFormat(), size=2097152)
|
||||
super()._connect(w1, w2, buffer)
|
||||
|
||||
def getFixedIfSampleRate(self) -> int:
|
||||
|
|
|
|||
Loading…
Reference in a new issue