[SCM] libav/experimental: caf: Use correct printf conversion specifiers for POSIX int types

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Aug 10 16:04:04 UTC 2014


The following commit has been merged in the experimental branch:
commit 942269fd00cb48328e4cffb6e21a0b691ce9f6bc
Author: Diego Biurrun <diego at biurrun.de>
Date:   Mon Jul 28 09:21:57 2014 -0700

    caf: Use correct printf conversion specifiers for POSIX int types

diff --git a/libavformat/cafdec.c b/libavformat/cafdec.c
index 7966225..6574623 100644
--- a/libavformat/cafdec.c
+++ b/libavformat/cafdec.c
@@ -292,7 +292,7 @@ static int read_header(AVFormatContext *s)
         default:
 #define _(x) ((x) >= ' ' ? (x) : ' ')
             av_log(s, AV_LOG_WARNING,
-                   "skipping CAF chunk: %08"PRIX32" (%"PRIu8"%"PRIu8"%"PRIu8"%"PRIu8")\n",
+                   "skipping CAF chunk: %08"PRIX32" (%"PRIu32"%"PRIu32"%"PRIu32"%"PRIu32")\n",
                 tag, _(tag>>24), _((tag>>16)&0xFF), _((tag>>8)&0xFF), _(tag&0xFF));
 #undef _
         case MKBETAG('f','r','e','e'):

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list