comparison msmpeg4.c @ 1057:bb5de8a59da8 libavcodec

* static,const,compiler warning cleanup
author kabi
date Mon, 10 Feb 2003 09:35:32 +0000
parents 1f9afd8b9131
children fdeac9642346
comparison
equal deleted inserted replaced
1056:eb403f8158eb 1057:bb5de8a59da8
623 msmpeg4_encode_block(s, block[i], i); 623 msmpeg4_encode_block(s, block[i], i);
624 } 624 }
625 } 625 }
626 626
627 /* old ffmpeg msmpeg4v3 mode */ 627 /* old ffmpeg msmpeg4v3 mode */
628 void ff_old_msmpeg4_dc_scale(MpegEncContext * s) 628 static void ff_old_msmpeg4_dc_scale(MpegEncContext * s)
629 { 629 {
630 if (s->qscale < 5){ 630 if (s->qscale < 5){
631 s->y_dc_scale = 8; 631 s->y_dc_scale = 8;
632 s->c_dc_scale = 8; 632 s->c_dc_scale = 8;
633 }else if (s->qscale < 9){ 633 }else if (s->qscale < 9){