disable polling the fp when driver is not ready for that
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>
Mon, 30 Oct 2006 12:17:56 +0000 (12:17 +0000)
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>
Mon, 30 Oct 2006 12:17:56 +0000 (12:17 +0000)
lib/driver/avswitch.cpp

index 8233d97e67688887c114f5aa5a3e3dd5c6c6266a..e9f2ece545065f0e9d4dc4c9b43dbf60b1dc9427 100644 (file)
@@ -23,7 +23,7 @@ eAVSwitch::eAVSwitch()
        }
        else
        {
        }
        else
        {
-               m_fp_notifier = new eSocketNotifier(eApp, m_fp_fd, eSocketNotifier::Read);
+               m_fp_notifier = new eSocketNotifier(eApp, m_fp_fd, eSocketNotifier::Read|POLLERR);
                CONNECT(m_fp_notifier->activated, eAVSwitch::fp_event);
        }
 }
                CONNECT(m_fp_notifier->activated, eAVSwitch::fp_event);
        }
 }
@@ -53,15 +53,27 @@ int eAVSwitch::getVCRSlowBlanking()
 
 void eAVSwitch::fp_event(int what)
 {
 
 void eAVSwitch::fp_event(int what)
 {
-       int val = FP_EVENT_VCR_SB_CHANGED;  // ask only for this event
-       if (ioctl(m_fp_fd, FP_IOCTL_GET_EVENT, &val) < 0)
-               eDebug("FP_IOCTL_GET_EVENT failed (%m)");
-       else if (val & FP_EVENT_VCR_SB_CHANGED)
-               /* emit */ vcr_sb_notifier(getVCRSlowBlanking());
+       if (what & POLLERR) // driver not ready for fp polling
+       {
+               eDebug("fp driver not read for polling.. so disable polling");
+               m_fp_notifier->stop();
+       }
+       else
+       {
+               int val = FP_EVENT_VCR_SB_CHANGED;  // ask only for this event
+               if (ioctl(m_fp_fd, FP_IOCTL_GET_EVENT, &val) < 0)
+                       eDebug("FP_IOCTL_GET_EVENT failed (%m)");
+               else if (val & FP_EVENT_VCR_SB_CHANGED)
+                       /* emit */ vcr_sb_notifier(getVCRSlowBlanking());
+       }
 }
 
 eAVSwitch::~eAVSwitch()
 {
 }
 
 eAVSwitch::~eAVSwitch()
 {
+       if ( m_fp_fd >= 0 )
+               close(m_fp_fd);
+       if (m_fp_notifier)
+               delete m_fp_notifier;
 }
 
 eAVSwitch *eAVSwitch::getInstance()
 }
 
 eAVSwitch *eAVSwitch::getInstance()