mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-05 15:34:57 -04:00
Removed liquid-dsp internal build and dependencies. Abandon clock recovery in ScopeNG
This commit is contained in:
@@ -16,7 +16,6 @@
|
||||
///////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "projector.h"
|
||||
#include "symsync.h" // dependency on liquid-dsp
|
||||
|
||||
Projector::Projector(ProjectionType projectionType) :
|
||||
m_projectionType(projectionType),
|
||||
@@ -24,12 +23,10 @@ Projector::Projector(ProjectionType projectionType) :
|
||||
m_cache(0),
|
||||
m_cacheMaster(true)
|
||||
{
|
||||
m_symSync = new SymbolSynchronizer();
|
||||
}
|
||||
|
||||
Projector::~Projector()
|
||||
{
|
||||
delete m_symSync;
|
||||
}
|
||||
|
||||
Real Projector::run(const Sample& s)
|
||||
@@ -80,9 +77,6 @@ Real Projector::run(const Sample& s)
|
||||
v = dPhi;
|
||||
}
|
||||
break;
|
||||
case ProjectionClock:
|
||||
v = m_symSync->run(s);
|
||||
break;
|
||||
case ProjectionReal:
|
||||
default:
|
||||
v = s.m_real / SDR_RX_SCALEF;
|
||||
|
||||
Reference in New Issue
Block a user