Skip to content
Snippets Groups Projects
Commit 36c5204d authored by Diego Biurrun's avatar Diego Biurrun
Browse files

Drop two more sets of useless parentheses.

Originally committed as revision 17262 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 90509ec7
No related branches found
No related tags found
No related merge requests found
...@@ -267,7 +267,7 @@ void ff_xvmc_decode_mb(MpegEncContext *s) ...@@ -267,7 +267,7 @@ void ff_xvmc_decode_mb(MpegEncContext *s)
for (i = 0; i < blocks_per_mb; i++) { for (i = 0; i < blocks_per_mb; i++) {
if (s->block_last_index[i] >= 0) { if (s->block_last_index[i] >= 0) {
// I do not have unsigned_intra MOCO to test, hope it is OK. // 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; s->pblocks[i][0] -= 1 << 10;
if (!render->idct) { if (!render->idct) {
s->dsp.idct(s->pblocks[i]); s->dsp.idct(s->pblocks[i]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment