[vlc-devel] [PATCH 1/3] chromecast: log the LOAD_CANCELLED received

Steve Lhomme robux4 at videolabs.io
Thu Aug 4 17:57:06 CEST 2016


---
 modules/stream_out/chromecast/chromecast_ctrl.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/modules/stream_out/chromecast/chromecast_ctrl.cpp b/modules/stream_out/chromecast/chromecast_ctrl.cpp
index 1ea0a95..9e52022 100644
--- a/modules/stream_out/chromecast/chromecast_ctrl.cpp
+++ b/modules/stream_out/chromecast/chromecast_ctrl.cpp
@@ -659,6 +659,10 @@ void intf_sys_t::processMessage(const castchannel::CastMessage &msg)
             else
                 msgReceiverGetStatus();
         }
+        else if (type == "LOAD_CANCELLED")
+        {
+            msg_Dbg( p_module, "LOAD canceled by another command");
+        }
         else if (type == "INVALID_REQUEST")
         {
             msg_Dbg( p_module, "We sent an invalid request reason:%s", (*p_data)["reason"].operator const char *());
-- 
2.8.2



More information about the vlc-devel mailing list