[vlc-commits] es_format: print the picture dimensions as the unsigned they are

Steve Lhomme git at videolan.org
Wed Jul 11 15:35:28 CEST 2018


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Wed Jul 11 15:29:42 2018 +0200| [d57e9c85b77c97e1741747a4e812ff146db353f0] | committer: Steve Lhomme

es_format: print the picture dimensions as the unsigned they are

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

 src/misc/es_format.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/misc/es_format.c b/src/misc/es_format.c
index b8bef340e8..2eeb46d918 100644
--- a/src/misc/es_format.c
+++ b/src/misc/es_format.c
@@ -424,7 +424,7 @@ void video_format_Print( vlc_object_t *p_this,
                          const char *psz_text, const video_format_t *fmt )
 {
     msg_Dbg( p_this,
-             "%s sz %ix%i, of (%i,%i), vsz %ix%i, 4cc %4.4s, sar %i:%i, msk r0x%x g0x%x b0x%x",
+             "%s sz %ux%u, of (%u,%u), vsz %ux%u, 4cc %4.4s, sar %u:%u, msk r0x%" PRIx32 " g0x%" PRIx32 " b0x%" PRIx32,
              psz_text,
              fmt->i_width, fmt->i_height, fmt->i_x_offset, fmt->i_y_offset,
              fmt->i_visible_width, fmt->i_visible_height,



More information about the vlc-commits mailing list