comparison h264.c @ 10930:b4e6b2d301ad libavcodec

Cosmetic, get rid of &x[0]
author michael
date Mon, 18 Jan 2010 23:55:19 +0000
parents b847f02d5b03
children 776dba50775c
comparison
equal deleted inserted replaced
10929:b847f02d5b03 10930:b4e6b2d301ad
576 prefetch_motion(h, 0); 576 prefetch_motion(h, 0);
577 577
578 if(IS_16X16(mb_type)){ 578 if(IS_16X16(mb_type)){
579 mc_part(h, 0, 1, 8, 0, dest_y, dest_cb, dest_cr, 0, 0, 579 mc_part(h, 0, 1, 8, 0, dest_y, dest_cb, dest_cr, 0, 0,
580 qpix_put[0], chroma_put[0], qpix_avg[0], chroma_avg[0], 580 qpix_put[0], chroma_put[0], qpix_avg[0], chroma_avg[0],
581 &weight_op[0], &weight_avg[0], 581 weight_op, weight_avg,
582 IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1)); 582 IS_DIR(mb_type, 0, 0), IS_DIR(mb_type, 0, 1));
583 }else if(IS_16X8(mb_type)){ 583 }else if(IS_16X8(mb_type)){
584 mc_part(h, 0, 0, 4, 8, dest_y, dest_cb, dest_cr, 0, 0, 584 mc_part(h, 0, 0, 4, 8, dest_y, dest_cb, dest_cr, 0, 0,
585 qpix_put[1], chroma_put[0], qpix_avg[1], chroma_avg[0], 585 qpix_put[1], chroma_put[0], qpix_avg[1], chroma_avg[0],
586 &weight_op[1], &weight_avg[1], 586 &weight_op[1], &weight_avg[1],