summaryrefslogtreecommitdiff
path: root/libavcodec/wmaenc.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2017-09-22 01:33:22 +0200
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2017-09-22 01:33:22 +0200
commit724cf83f100065ddabf827f55bf7ae9785875b4c (patch)
tree1ab91c813a08d35c94d1214aa431070481bf1476 /libavcodec/wmaenc.c
parentc34c0e3a649eb4fe8e6fb756b7784b7bfd9bd638 (diff)
downloadffmpeg-724cf83f100065ddabf827f55bf7ae9785875b4c.tar.gz
Remove some unneeded casts of bit_rate.
Diffstat (limited to 'libavcodec/wmaenc.c')
-rw-r--r--libavcodec/wmaenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmaenc.c b/libavcodec/wmaenc.c
index c68babd549..091bc2ac3b 100644
--- a/libavcodec/wmaenc.c
+++ b/libavcodec/wmaenc.c
@@ -53,7 +53,7 @@ static av_cold int encode_init(AVCodecContext *avctx)
if (avctx->bit_rate < 24 * 1000) {
av_log(avctx, AV_LOG_ERROR,
"bitrate too low: got %"PRId64", need 24000 or higher\n",
- (int64_t)avctx->bit_rate);
+ avctx->bit_rate);
return AVERROR(EINVAL);
}