diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-06-23 21:37:05 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-06-23 21:37:05 +0200 |
commit | 388f0957660027418ef931adaf21346e19ec2b67 (patch) | |
tree | 60ba3f3c13e53f6ff2f9acede43e9ce55d1af620 | |
parent | 947daffa59fca84f9e2a5242a1199399c4e27b5d (diff) | |
download | ffmpeg-388f0957660027418ef931adaf21346e19ec2b67.tar.gz |
avformat/g729dec: Fix av_log() formating string
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/g729dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |