[vlc-commits] chromecast: log whether we have an input or not
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:07 2016 +0200| [6b093b50a54983bbf3e84e85587c9f5cb246ae14] | committer: Jean-Baptiste Kempf
chromecast: log whether we have an input or not
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6b093b50a54983bbf3e84e85587c9f5cb246ae14
---
modules/stream_out/chromecast/chromecast_ctrl.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/stream_out/chromecast/chromecast_ctrl.cpp b/modules/stream_out/chromecast/chromecast_ctrl.cpp
index 9e52022..2bfcdd7 100644
--- a/modules/stream_out/chromecast/chromecast_ctrl.cpp
+++ b/modules/stream_out/chromecast/chromecast_ctrl.cpp
@@ -183,7 +183,7 @@ intf_sys_t::~intf_sys_t()
void intf_sys_t::setHasInput( bool b_has_input, const std::string mime_type )
{
vlc_mutex_locker locker(&lock);
- msg_Dbg( p_module, "setHasInput device:%s session:%s",
+ msg_Dbg( p_module, "setHasInput %s device:%s session:%s",b_has_input ? "true":"false",
targetIP.c_str(), mediaSessionId.c_str() );
this->has_input = b_has_input;
More information about the vlc-commits
mailing list