1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 07:16:48 -04:00

ATV Demod: reset column count to exact value when no valid hsync

This commit is contained in:
f4exb 2017-04-06 03:28:21 +02:00
parent 74202b9a17
commit 6dbbbec71d

View File

@ -546,7 +546,7 @@ private:
else if (m_intColIndex >= m_intNumberSamplePerLine + m_intNumberSamplePerTop) // No valid H sync
{
//qDebug("HLine: %d", m_intColIndex);
m_intColIndex = 0;
m_intColIndex = m_intNumberSamplePerTop;
blnNewLine = true;
}