Commit 388f0957 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/g729dec: Fix av_log() formating string

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 947daffa
...@@ -56,7 +56,7 @@ static int g729_read_header(AVFormatContext *s) ...@@ -56,7 +56,7 @@ static int g729_read_header(AVFormatContext *s)
st->codecpar->block_align = 10; st->codecpar->block_align = 10;
break; break;
default: 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); "Only 6400 and 8000 b/s are supported.", s->bit_rate);
return AVERROR(EINVAL); return AVERROR(EINVAL);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment