# HG changeset patch # User michael # Date 1082313005 0 # Node ID b306574523ad2c9033d98f6acf798387c514384b # Parent f9212b59a8027fe20e4a401d64970ebf8824c689 fix y scale of mv vissualization of interlaced MVs diff -r f9212b59a802 -r b306574523ad mpegvideo.c --- a/mpegvideo.c Sun Apr 18 17:46:52 2004 +0000 +++ b/mpegvideo.c Sun Apr 18 18:30:05 2004 +0000 @@ -1738,9 +1738,13 @@ int sx=mb_x*16 + 8; int sy=mb_y*16 + 4 + 8*i; int xy= mb_x*2 + (mb_y*2 + i)*s->b8_stride; - int mx=(pict->motion_val[direction][xy][0]>>shift) + sx; - int my=(pict->motion_val[direction][xy][1]>>shift) + sy; - draw_arrow(ptr, sx, sy, mx, my, s->width, s->height, s->linesize, 100); + int mx=(pict->motion_val[direction][xy][0]>>shift); + int my=(pict->motion_val[direction][xy][1]>>shift); + + if(IS_INTERLACED(pict->mb_type[mb_index])) + my*=2; + + draw_arrow(ptr, sx, sy, mx+sx, my+sy, s->width, s->height, s->linesize, 100); } }else{ int sx= mb_x*16 + 8;