diff options
author | Corey Hickey <bugfood-ml@fatooh.org> | 2006-09-04 17:08:20 +0000 |
---|---|---|
committer | Corey Hickey <bugfood-ml@fatooh.org> | 2006-09-04 17:08:20 +0000 |
commit | 29b372b9e99c640d439aeeff6d3232e4d23cae5b (patch) | |
tree | 245159ba90c99419eda245ff28422b3c0dcc767c | |
parent | ffb512e349f2d82fb6a73a11d496c569e7c50a95 (diff) | |
download | ffmpeg-29b372b9e99c640d439aeeff6d3232e4d23cae5b.tar.gz |
error message spelling typo
Originally committed as revision 6168 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ratecontrol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ratecontrol.c b/libavcodec/ratecontrol.c index f4f433adde..133e43071e 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; } |