1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-04 18:29:59 +02:00

error message spelling typo

Originally committed as revision 6168 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Corey Hickey 2006-09-04 17:08:20 +00:00
parent ffb512e349
commit 29b372b9e9

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];
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;
}