DSD demod: removed unused method

This commit is contained in:
f4exb 2021-04-19 11:41:06 +02:00
parent 4e7dee3f04
commit 19aaa6efda
2 changed files with 0 additions and 6 deletions

View File

@ -37,11 +37,6 @@ DSDDecoder::~DSDDecoder()
{
}
void DSDDecoder::set48k(bool to48k)
{
m_decoder.setUpsampling(to48k ? 6 : 0);
}
void DSDDecoder::setUpsampling(int upsampling)
{
m_decoder.setUpsampling(upsampling);

View File

@ -73,7 +73,6 @@ public:
void setBaudRate(int baudRate);
void setSymbolPLLLock(bool pllLock) { m_decoder.setSymbolPLLLock(pllLock); }
void useHPMbelib(bool useHP) { m_decoder.useHPMbelib(useHP); }
void set48k(bool to48k);
void setUpsampling(int upsampling);
private: