Browse code

avformat/g729dec: Fix av_log() formating string

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

Michael Niedermayer authored on 2016/06/24 04:37:05
Showing 1 changed files
... ...
@@ -56,7 +56,7 @@ static int g729_read_header(AVFormatContext *s)
56 56
         st->codecpar->block_align = 10;
57 57
         break;
58 58
     default:
59
-        av_log(s, AV_LOG_ERROR, "Invalid bit_rate value %d. "
59
+        av_log(s, AV_LOG_ERROR, "Invalid bit_rate value %"PRId64". "
60 60
                "Only 6400 and 8000 b/s are supported.", s->bit_rate);
61 61
         return AVERROR(EINVAL);
62 62
     }