[vlc-commits] chromecast: log which codec cannot be handled by the transcoder

Steve Lhomme git at videolan.org
Mon Jun 27 15:37:35 CEST 2016


vlc | branch: master | Steve Lhomme <robux4 at videolabs.io> | Mon Jun 27 13:35:48 2016 +0200| [d2399480e90cf5d5c27cd9d8c104e386db3292d3] | committer: Jean-Baptiste Kempf

chromecast: log which codec cannot be handled by the transcoder

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

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

 modules/stream_out/chromecast/cast.cpp |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/stream_out/chromecast/cast.cpp b/modules/stream_out/chromecast/cast.cpp
index c947faa..36f61c6 100644
--- a/modules/stream_out/chromecast/cast.cpp
+++ b/modules/stream_out/chromecast/cast.cpp
@@ -322,7 +322,7 @@ int sout_stream_sys_t::UpdateOutput( sout_stream_t *p_stream )
             p_sys_id->p_sub_id = sout_StreamIdAdd( p_out, &p_sys_id->fmt );
             if ( p_sys_id->p_sub_id == NULL )
             {
-                msg_Err( p_stream, "can't handle a stream" );
+                msg_Err( p_stream, "can't handle %4.4s stream", (char *)&p_sys_id->fmt.i_codec );
                 streams.erase( it, it );
             }
         }



More information about the vlc-commits mailing list