avformat/g729dec: Fix av_log() formating string

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2016-06-23 21:37:05 +02:00
parent 947daffa59
commit 388f095766

View File

@ -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);
}