cec: mark the correct device as active source after a stream path change. if the...
[deb_libcec.git] / include / cec.h
index a3a674e4bad62d1ffe246b57b536818f99d172d3..0332088906e72a0a5c254ec42b023251aa02e00e 100644 (file)
@@ -419,6 +419,11 @@ namespace CEC
      * @brief Tell libCEC to poll for active devices on the bus.
      */
     virtual void RescanActiveDevices(void) = 0;
+
+    /*!
+     * @return true when libCEC is the active source on the bus, false otherwise.
+     */
+    virtual bool IsLibCECActiveSource(void) = 0;
   };
 };
 
@@ -438,6 +443,12 @@ extern "C" DECLSPEC void * CECInit(const char *strDeviceName, CEC::cec_device_ty
  */
 extern "C" DECLSPEC void * CECInitialise(CEC::libcec_configuration *configuration);
 
+/*!
+ * @brief Try to connect to the adapter and send the "start bootloader" command, without initialising libCEC and going through all checks
+ * @return True when the command was send, false otherwise.
+ */
+extern "C" DECLSPEC bool CECStartBootloader(void);
+
 /*!
  * @brief Unload the CEC adapter library.
  */