[mythtv-users] mythcommflag failure on mythtv-light system

Mike Bibbings mike.bibbings at gmail.com
Fri Aug 16 21:47:50 UTC 2019


On 16/08/2019 22:39, Klaas de Waal wrote:
> About this bug:
>>   QObject::connect: No such slot ClassicCommDetector::m_sceneChangeDetectorHasNewInformation(unsigned int,bool,float) in ClassicCommDetector.cpp:262
>>
> I can confirm this is a bug and will fix this asap.
>
> Klaas.

I think a possible fix for mythtv master is a follows, this reverts a 
previous change, may also affect mythtv 30 (not tested)

diff --git a/mythtv/programs/mythcommflag/ClassicCommDetector.cpp 
b/mythtv/programs/mythcommflag/ClassicCommDetector.cpp
index 0e4a8b5508..c05cc05306 100644
--- a/mythtv/programs/mythcommflag/ClassicCommDetector.cpp
+++ b/mythtv/programs/mythcommflag/ClassicCommDetector.cpp
@@ -259,7 +259,7 @@ void ClassicCommDetector::Init()
           m_sceneChangeDetector,
           SIGNAL(haveNewInformation(unsigned int,bool,float)),
           this,
-         SLOT(m_sceneChangeDetectorHasNewInformation(unsigned 
int,bool,float))
+         SLOT(sceneChangeDetectorHasNewInformation(unsigned 
int,bool,float))
      );

      m_frameIsBlank = false;


Mike



More information about the mythtv-users mailing list