1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-07 16:34:45 -04:00

Decimate more.

This commit is contained in:
John Greb
2015-05-18 15:18:00 +01:00
parent 95fe79650c
commit f2c1b6e11e
5 changed files with 19 additions and 18 deletions
+2 -2
View File
@@ -94,7 +94,7 @@ bool V4LInput::startInput(int device)
return false;
}
m_deviceDescription = QString("RTL-SDR /dev/swradio0");
m_deviceDescription = QString("SDRplay /dev/swradio0");
qDebug("V4LInput: start");
//MsgReportV4L::create(m_gains)->submit(m_guiMessageQueue);
@@ -123,7 +123,7 @@ const QString& V4LInput::getDeviceDescription() const
int V4LInput::getSampleRate() const
{
// The output rate is lower than the device rate
int result = SAMPLERATE / 2;
int result = SAMPLERATE / 4;
return result;
}