1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-24 19:14:15 -04:00

ATV: use skip instead of leap for the horizontal sync skip mode

This commit is contained in:
f4exb
2017-04-08 05:35:09 +02:00
parent f2d2978edc
commit 6f9a044ddc
8 changed files with 76 additions and 25 deletions
+2 -2
View File
@@ -271,7 +271,7 @@ Complex& ATVMod::modulateVestigialSSB(Real& sample)
void ATVMod::pullVideo(Real& sample)
{
if ((m_running.m_atvStd == ATVStdHLeap) && (m_lineCount == m_nbLines2)) // last line in leap mode
if ((m_running.m_atvStd == ATVStdHSkip) && (m_lineCount == m_nbLines2)) // last line in skip mode
{
pullImageLine(sample, true); // pull image line without sync
}
@@ -829,7 +829,7 @@ void ATVMod::applyStandard()
switch(m_config.m_atvStd)
{
case ATVStdHLeap:
case ATVStdHSkip:
m_nbImageLines = m_nbLines; // lines less the total number of sync lines
m_nbImageLines2 = m_nbImageLines; // force non interleaved for vbars
m_interleaved = false;