comparison mpegvideo.c @ 4525:5af00e83f439 libavcodec

Spelling fix
author mbardiaux
date Thu, 15 Feb 2007 12:57:20 +0000
parents 1d273628b4cb
children a96d905dcbaa
comparison
equal deleted inserted replaced
4524:722e3199c56e 4525:5af00e83f439
180 shift++; 180 shift++;
181 } 181 }
182 } 182 }
183 } 183 }
184 if(shift){ 184 if(shift){
185 av_log(NULL, AV_LOG_INFO, "Warning, QMAT_SHIFT is larger then %d, overflows possible\n", QMAT_SHIFT - shift); 185 av_log(NULL, AV_LOG_INFO, "Warning, QMAT_SHIFT is larger than %d, overflows possible\n", QMAT_SHIFT - shift);
186 } 186 }
187 } 187 }
188 188
189 static inline void update_qscale(MpegEncContext *s){ 189 static inline void update_qscale(MpegEncContext *s){
190 s->qscale= (s->lambda*139 + FF_LAMBDA_SCALE*64) >> (FF_LAMBDA_SHIFT + 7); 190 s->qscale= (s->lambda*139 + FF_LAMBDA_SCALE*64) >> (FF_LAMBDA_SHIFT + 7);