[vlc-commits] chromecast: log the LOAD_CANCELLED received

Steve Lhomme git at videolan.org
Fri Aug 5 16:13:59 CEST 2016


vlc | branch: master | Steve Lhomme <robUx4 at videolabs.io> | Thu Aug  4 17:57:06 2016 +0200| [f6e68589a31c309503fd4603ed13dd15aac62c0a] | committer: Jean-Baptiste Kempf

chromecast: log the LOAD_CANCELLED received

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f6e68589a31c309503fd4603ed13dd15aac62c0a
---

 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 *());



More information about the vlc-commits mailing list