From 388f0957660027418ef931adaf21346e19ec2b67 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 23 Jun 2016 21:37:05 +0200 Subject: avformat/g729dec: Fix av_log() formating string Signed-off-by: Michael Niedermayer --- libavformat/g729dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/g729dec.c') diff --git a/libavformat/g729dec.c b/libavformat/g729dec.c index 337681bb0a..7b67fc488c 100644 --- a/libavformat/g729dec.c +++ b/libavformat/g729dec.c @@ -56,7 +56,7 @@ static int g729_read_header(AVFormatContext *s) st->codecpar->block_align = 10; break; default: - av_log(s, AV_LOG_ERROR, "Invalid bit_rate value %d. " + av_log(s, AV_LOG_ERROR, "Invalid bit_rate value %"PRId64". " "Only 6400 and 8000 b/s are supported.", s->bit_rate); return AVERROR(EINVAL); } -- cgit v1.2.3