vlc | branch: master | Steve Lhomme <[email protected]> | 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 <[email protected]> > 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 ); } } _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
