mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-04-21 06:13:45 +00:00
32 lines
566 B
Python
32 lines
566 B
Python
from pycsdr.modules import Reader
|
|
from csdr.chain import Chain
|
|
from abc import ABC, abstractmethod
|
|
|
|
|
|
class BaseDemodulatorChain(Chain):
|
|
def getFixedIfSampleRate(self):
|
|
return None
|
|
|
|
def supportsSquelch(self):
|
|
return True
|
|
|
|
|
|
class SecondaryDemodulator(Chain):
|
|
pass
|
|
|
|
|
|
class FixedAudioRateChain(ABC):
|
|
@abstractmethod
|
|
def getFixedAudioRate(self):
|
|
pass
|
|
|
|
|
|
class FixedIfSampleRateChain(ABC):
|
|
@abstractmethod
|
|
def getFixedIfSampleRate(self):
|
|
return self.fixedIfSampleRate
|
|
|
|
|
|
# marker interface
|
|
class HdAudio:
|
|
pass
|