Browse Source

error message spelling typo

Originally committed as revision 6168 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Corey Hickey 19 years ago
parent
commit
29b372b9e9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/ratecontrol.c

+ 1
- 1
libavcodec/ratecontrol.c View File

@@ -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]; all_const_bits= const_bits[I_TYPE] + const_bits[P_TYPE] + const_bits[B_TYPE];


if(all_available_bits < all_const_bits){ 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; return -1;
} }




Loading…
Cancel
Save