summaryrefslogtreecommitdiff
path: root/libavcodec/ratecontrol.c
diff options
context:
space:
mode:
authorCorey Hickey <bugfood-ml@fatooh.org>2006-09-04 17:08:20 +0000
committerCorey Hickey <bugfood-ml@fatooh.org>2006-09-04 17:08:20 +0000
commit29b372b9e99c640d439aeeff6d3232e4d23cae5b (patch)
tree245159ba90c99419eda245ff28422b3c0dcc767c /libavcodec/ratecontrol.c
parentffb512e349f2d82fb6a73a11d496c569e7c50a95 (diff)
error message spelling typo
Originally committed as revision 6168 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ratecontrol.c')
-rw-r--r--libavcodec/ratecontrol.c2
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;
}