[SCM] libav/experimental: dump: 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 59ca29a560ba0cfe97457de8cedf77db434f0de4
Author: Diego Biurrun <diego at biurrun.de>
Date:   Sat Jul 26 05:11:18 2014 -0700

    dump: Use correct printf conversion specifiers for POSIX int types

diff --git a/libavformat/dump.c b/libavformat/dump.c
index aae23af..cdf2da1 100644
--- a/libavformat/dump.c
+++ b/libavformat/dump.c
@@ -156,7 +156,7 @@ static void dump_paramchange(void *ctx, AVPacketSideData *sd)
         channels = AV_RL32(data);
         data += 4;
         size -= 4;
-        av_log(ctx, AV_LOG_INFO, "channel count %d, ", channels);
+        av_log(ctx, AV_LOG_INFO, "channel count %"PRIu32", ", channels);
     }
     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT) {
         if (size < 8)
@@ -173,7 +173,7 @@ static void dump_paramchange(void *ctx, AVPacketSideData *sd)
         sample_rate = AV_RL32(data);
         data += 4;
         size -= 4;
-        av_log(ctx, AV_LOG_INFO, "sample_rate %d, ", sample_rate);
+        av_log(ctx, AV_LOG_INFO, "sample_rate %"PRIu32", ", sample_rate);
     }
     if (flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS) {
         if (size < 8)
@@ -184,7 +184,7 @@ static void dump_paramchange(void *ctx, AVPacketSideData *sd)
         height = AV_RL32(data);
         data += 4;
         size -= 4;
-        av_log(ctx, AV_LOG_INFO, "width %d height %d", width, height);
+        av_log(ctx, AV_LOG_INFO, "width %"PRIu32" height %"PRIu32, width, height);
     }
 
     return;

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list