From: Corey Hickey Date: Mon, 4 Sep 2006 17:08:20 +0000 (+0000) Subject: error message spelling typo X-Git-Tag: v0.5~11941 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=29b372b9e99c640d439aeeff6d3232e4d23cae5b;p=platform%2Fupstream%2Flibav.git error message spelling typo Originally committed as revision 6168 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/ratecontrol.c b/libavcodec/ratecontrol.c index f4f433a..133e430 100644 --- a/libavcodec/ratecontrol.c +++ b/libavcodec/ratecontrol.c @@ -821,7 +821,7 @@ static int init_pass2(MpegEncContext *s) all_const_bits= const_bits[I_TYPE] + const_bits[P_TYPE] + const_bits[B_TYPE]; if(all_available_bits < all_const_bits){ - av_log(s->avctx, AV_LOG_ERROR, "requested bitrate is to low\n"); + av_log(s->avctx, AV_LOG_ERROR, "requested bitrate is too low\n"); return -1; }