comparison motion_est.c @ 232:b640ec5948b0 libavcodec

- Now the ME is done for the entire picture when enconding, the DCT/Quantization is done after we have calculated all the MV of the picture. - This is the preamble for a better bit rate control.
author pulento
date Sun, 10 Feb 2002 01:56:50 +0000
parents 9df2d13e64b2
children 3f5b72726118
comparison
equal deleted inserted replaced
231:840cd25bf259 232:b640ec5948b0
415 }else { 415 }else {
416 /* XXX: dunno if this is correct but ffmpeg4 decoder wont like it otherwise 416 /* XXX: dunno if this is correct but ffmpeg4 decoder wont like it otherwise
417 (cuz the drawn edge isnt large enough))*/ 417 (cuz the drawn edge isnt large enough))*/
418 xmax = s->width; 418 xmax = s->width;
419 ymax = s->height; 419 ymax = s->height;
420 } 420 }
421 } else { 421 } else {
422 xmin = 0; 422 xmin = 0;
423 ymin = 0; 423 ymin = 0;
424 xmax = s->mb_width*16 - 16; 424 xmax = s->mb_width*16 - 16;
425 ymax = s->mb_height*16 - 16; 425 ymax = s->mb_height*16 - 16;