comparison mpegvideo.c @ 7377:3f819263176e libavcodec

cosmetics: Fix two common typos: wont --> will not, lets --> let us.
author diego
date Thu, 24 Jul 2008 17:09:28 +0000
parents 778ecab25dd8
children 211cca1e3f39
comparison
equal deleted inserted replaced
7376:5f3b62eaf6e5 7377:3f819263176e
1394 const int h_edge_pos = s->h_edge_pos >> lowres; 1394 const int h_edge_pos = s->h_edge_pos >> lowres;
1395 const int v_edge_pos = s->v_edge_pos >> lowres; 1395 const int v_edge_pos = s->v_edge_pos >> lowres;
1396 linesize = s->current_picture.linesize[0] << field_based; 1396 linesize = s->current_picture.linesize[0] << field_based;
1397 uvlinesize = s->current_picture.linesize[1] << field_based; 1397 uvlinesize = s->current_picture.linesize[1] << field_based;
1398 1398
1399 if(s->quarter_sample){ //FIXME obviously not perfect but qpel wont work in lowres anyway 1399 if(s->quarter_sample){ //FIXME obviously not perfect but qpel will not work in lowres anyway
1400 motion_x/=2; 1400 motion_x/=2;
1401 motion_y/=2; 1401 motion_y/=2;
1402 } 1402 }
1403 1403
1404 if(field_based){ 1404 if(field_based){