[vlc-commits] decoder: remove warning in debug message

Rémi Denis-Courmont git at videolan.org
Tue Apr 18 20:56:10 CEST 2017


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | 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 );



More information about the vlc-commits mailing list