summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2013-03-08 23:39:50 +0100
committerStefano Sabatini <stefasab@gmail.com>2013-03-10 13:22:58 +0100
commitdae76e8c4730f60bb46ac3ab30f5231b50b5fa56 (patch)
tree6adc3ab74b6924ec9f74844ba2e7eb686c38d88c /libavcodec
parentf963c77856d2999b07dca49134e5f5de185d3147 (diff)
lavc/utils: fix typo and reword message in case of too low bitrate
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index befb94896b..e42b72e431 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -1044,7 +1044,7 @@ int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *code
}
if ( (avctx->codec_type == AVMEDIA_TYPE_VIDEO || avctx->codec_type == AVMEDIA_TYPE_AUDIO)
&& avctx->bit_rate>0 && avctx->bit_rate<1000) {
- av_log(avctx, AV_LOG_WARNING, "Bitrate %d is extreemly low, did you mean %dk\n", avctx->bit_rate, avctx->bit_rate);
+ av_log(avctx, AV_LOG_WARNING, "Bitrate %d is extremely low, maybe you mean %dk\n", avctx->bit_rate, avctx->bit_rate);
}
if (!avctx->rc_initial_buffer_occupancy)