vlc | branch: master | Rémi Denis-Courmont <[email protected]> | Mon Apr 17 23:02:19 2017 +0300| [1ba6ff8014093823338f93460b5e9b8ac6de886c] | committer: Rémi Denis-Courmont
decoder: remove warning in debug message > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1ba6ff8014093823338f93460b5e9b8ac6de886c --- src/input/decoder.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/input/decoder.c b/src/input/decoder.c index c213d35ff9..2a24ed082d 100644 --- a/src/input/decoder.c +++ b/src/input/decoder.c @@ -1747,9 +1747,8 @@ static void DeleteDecoder( decoder_t * p_dec ) { decoder_owner_sys_t *p_owner = p_dec->p_owner; - msg_Dbg( p_dec, "killing decoder fourcc `%4.4s', %u PES in FIFO", - (char*)&p_dec->fmt_in.i_codec, - (unsigned)block_FifoCount( p_owner->p_fifo ) ); + msg_Dbg( p_dec, "killing decoder fourcc `%4.4s'", + (char*)&p_dec->fmt_in.i_codec ); const bool b_flush_spu = p_dec->fmt_out.i_cat == SPU_ES; UnloadDecoder( p_dec ); _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
