Mercurial > libavcodec.hg
changeset 8861:da23b389e856 libavcodec
cosmetics: Consistently format all if/else statements in K&R style
and drop braces from if statements where unnecessary.
author | diego |
---|---|
date | Sat, 14 Feb 2009 19:00:51 +0000 |
parents | 0617c9f594d0 |
children | 5aa3cfee2291 |
files | mpegvideo_xvmc.c |
diffstat | 1 files changed, 7 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/mpegvideo_xvmc.c Sat Feb 14 18:57:32 2009 +0000 +++ b/mpegvideo_xvmc.c Sat Feb 14 19:00:51 2009 +0000 @@ -52,11 +52,10 @@ j = 0; cbp <<= 12-mb_block_count; for (i = 0; i < mb_block_count; i++) { - if (cbp & (1<<11)) { + if (cbp & (1 << 11)) s->pblocks[i] = (short *)(&s->block[j++]); - }else{ + else s->pblocks[i] = NULL; - } cbp+=cbp; } } @@ -161,9 +160,9 @@ mv_block->x = s->mb_x; mv_block->y = s->mb_y; mv_block->dct_type = s->interlaced_dct;//XVMC_DCT_TYPE_FRAME/FIELD; - if (s->mb_intra){ + if (s->mb_intra) { mv_block->macroblock_type = XVMC_MB_TYPE_INTRA;//no MC, all done - }else{ + } else { mv_block->macroblock_type = XVMC_MB_TYPE_PATTERN; if (s->mv_dir & MV_DIR_FORWARD) { @@ -214,7 +213,7 @@ mv_block->PMV[1][1][0] = s->mv[0][3][0];//dmv10, bottom from top mv_block->PMV[1][1][1] = s->mv[0][3][1]<<1;//dmv11 - }else{ + } else { mv_block->PMV[0][1][0] = s->mv[0][2][0];//dmv00 mv_block->PMV[0][1][1] = s->mv[0][2][1];//dmv01 } @@ -254,13 +253,13 @@ } if (s->flags & CODEC_FLAG_GRAY) { - if (s->mb_intra){//intra frames are always full chroma block + if (s->mb_intra) {//intra frames are always full chroma block for (i = 4; i < blocks_per_mb; i++) { memset(s->pblocks[i],0,sizeof(short)*8*8);//so we need to clear them if (!render->unsigned_intra) s->pblocks[i][0] = 1 << 10; } - }else{ + } else { cbp &= 0xf << (blocks_per_mb - 4); blocks_per_mb = 4;//luminance blocks only }