mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-22 16:08:39 -05:00
ATV Modulator: remove useless method parameters
This commit is contained in:
parent
b57b8f0a9a
commit
044fe0565d
@ -719,7 +719,7 @@ void ATVMod::apply(bool force)
|
||||
memset(m_SSBFilterBuffer, 0, sizeof(Complex)*(m_ssbFftLen>>1));
|
||||
m_SSBFilterBufferIndex = 0;
|
||||
|
||||
applyStandard(m_tvSampleRate, m_pointsPerLine); // set all timings
|
||||
applyStandard(); // set all timings
|
||||
m_settingsMutex.unlock();
|
||||
|
||||
MsgReportEffectiveSampleRate *report;
|
||||
@ -803,7 +803,7 @@ float ATVMod::getRFBandwidthDivisor(ATVModulation modulation)
|
||||
}
|
||||
}
|
||||
|
||||
void ATVMod::applyStandard(int rateUnits, int nbPointsPerRateUnit)
|
||||
void ATVMod::applyStandard()
|
||||
{
|
||||
m_pointsPerSync = (uint32_t) ((4.7f / 64.0f) * m_pointsPerLine);
|
||||
m_pointsPerBP = (uint32_t) ((4.7f / 64.0f) * m_pointsPerLine);
|
||||
|
@ -699,7 +699,7 @@ private:
|
||||
void modulateSample();
|
||||
Complex& modulateSSB(Real& sample);
|
||||
Complex& modulateVestigialSSB(Real& sample);
|
||||
void applyStandard(int rateUnits, int nbPointsPerRateUnit);
|
||||
void applyStandard();
|
||||
void openImage(const QString& fileName);
|
||||
void openVideo(const QString& fileName);
|
||||
void resizeImage();
|
||||
|
Loading…
Reference in New Issue
Block a user