Mercurial > libavcodec.hg
diff mpegvideo_xvmc.c @ 8863:4b11309c8322 libavcodec
Drop two more sets of useless parentheses.
| author | diego |
|---|---|
| date | Sat, 14 Feb 2009 19:05:07 +0000 |
| parents | 5aa3cfee2291 |
| children | 25fd53df6f3e |
line wrap: on
line diff
--- a/mpegvideo_xvmc.c Sat Feb 14 19:02:46 2009 +0000 +++ b/mpegvideo_xvmc.c Sat Feb 14 19:05:07 2009 +0000 @@ -267,7 +267,7 @@ for (i = 0; i < blocks_per_mb; i++) { if (s->block_last_index[i] >= 0) { // I do not have unsigned_intra MOCO to test, hope it is OK. - if ((s->mb_intra) && (render->idct || (!render->idct && !render->unsigned_intra))) + if (s->mb_intra && (render->idct || !render->idct && !render->unsigned_intra)) s->pblocks[i][0] -= 1 << 10; if (!render->idct) { s->dsp.idct(s->pblocks[i]);
