[FFmpeg-cvslog] lavc/utils: fix typo and reword message in case of too low bitrate
Stefano Sabatini
git at videolan.org
Sun Mar 10 13:44:45 CET 2013
ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Fri Mar 8 23:39:50 2013 +0100| [dae76e8c4730f60bb46ac3ab30f5231b50b5fa56] | committer: Stefano Sabatini
lavc/utils: fix typo and reword message in case of too low bitrate
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dae76e8c4730f60bb46ac3ab30f5231b50b5fa56
---
libavcodec/utils.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index befb948..e42b72e 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)
More information about the ffmpeg-cvslog
mailing list