[vlc-commits] x265: fix log format string

Zhao Zhili git at videolan.org
Thu Sep 20 05:56:57 CEST 2018


vlc | branch: master | Zhao Zhili <quinkblack at foxmail.com> | Thu Sep 20 11:19:00 2018 +0800| [f632aa4c7c59f84d69e466b8f80ece0ae970c7c2] | committer: Rémi Denis-Courmont

x265: fix log format string

Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>

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

 modules/codec/x265.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/codec/x265.c b/modules/codec/x265.c
index c918b45f41..e988f563db 100644
--- a/modules/codec/x265.c
+++ b/modules/codec/x265.c
@@ -127,7 +127,7 @@ static block_t *Encode(encoder_t *p_enc, picture_t *p_pict)
     }
 
 #ifndef NDEBUG
-    msg_Dbg(p_enc, "%zu bytes (frame %"PRId64", %.2ffps)", p_block->i_buffer,
+    msg_Dbg(p_enc, "%zu bytes (frame %u, %.2ffps)", p_block->i_buffer,
         p_sys->frame_count, (float)p_sys->frame_count * CLOCK_FREQ / (vlc_tick_now() - p_sys->start));
 #endif
 



More information about the vlc-commits mailing list