1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-25 04:53:27 -04:00

Removed Fc pos references in Sample Sink side

This commit is contained in:
f4exb
2018-05-10 14:33:17 +02:00
parent de2e018e42
commit c458f0647c
4 changed files with 2 additions and 12 deletions
@@ -25,8 +25,7 @@ LimeSDROutputThread::LimeSDROutputThread(lms_stream_t* stream, SampleSourceFifo*
m_running(false),
m_stream(stream),
m_sampleFifo(sampleFifo),
m_log2Interp(0),
m_fcPos(LimeSDROutputSettings::FC_POS_CENTER)
m_log2Interp(0)
{
std::fill(m_buf, m_buf + 2*LIMESDROUTPUT_BLOCKSIZE, 0);
}
@@ -74,11 +73,6 @@ void LimeSDROutputThread::setLog2Interpolation(unsigned int log2_interp)
m_log2Interp = log2_interp;
}
void LimeSDROutputThread::setFcPos(int fcPos)
{
m_fcPos = fcPos;
}
void LimeSDROutputThread::run()
{
int res;