summaryrefslogtreecommitdiff
path: root/libavformat/dump.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2019-08-10 23:33:10 +0200
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2019-08-10 23:33:10 +0200
commit67114195694df1057f34d9bb056d6fbac52b4017 (patch)
tree8cca133f7110502fb1229e5f8bbc965b3b0e88d3 /libavformat/dump.c
parent4b1687f23c133599f38e5f47433619b3db2e368d (diff)
downloadffmpeg-67114195694df1057f34d9bb056d6fbac52b4017.tar.gz
lavf/dump: Fix vbv_delay type specifier.
Spotted-by: James Almer
Diffstat (limited to 'libavformat/dump.c')
-rw-r--r--libavformat/dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dump.c b/libavformat/dump.c
index 1c44656071..aeaa5b7be4 100644
--- a/libavformat/dump.c
+++ b/libavformat/dump.c
@@ -320,7 +320,7 @@ static void dump_cpb(void *ctx, AVPacketSideData *sd)
}
av_log(ctx, AV_LOG_INFO,
- "bitrate max/min/avg: %d/%d/%d buffer size: %d vbv_delay: %"PRId64,
+ "bitrate max/min/avg: %d/%d/%d buffer size: %d vbv_delay: %"PRIu64,
cpb->max_bitrate, cpb->min_bitrate, cpb->avg_bitrate,
cpb->buffer_size,
cpb->vbv_delay);