From 6dbbbec71d55e1251af7b2130a3c1bbc117ecf82 Mon Sep 17 00:00:00 2001 From: f4exb Date: Thu, 6 Apr 2017 03:28:21 +0200 Subject: [PATCH] ATV Demod: reset column count to exact value when no valid hsync --- plugins/channelrx/demodatv/atvdemod.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/channelrx/demodatv/atvdemod.h b/plugins/channelrx/demodatv/atvdemod.h index 4f88e4253..672e31a64 100644 --- a/plugins/channelrx/demodatv/atvdemod.h +++ b/plugins/channelrx/demodatv/atvdemod.h @@ -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; }