diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-12-07 13:48:58 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-12-07 15:29:13 +0100 |
commit | ee41963f19eb6303b1582601dfccb1753866ab63 (patch) | |
tree | b57d0533b89169f91867435381f34b519706671a /libavcodec/vc1dec.c | |
parent | fc9489f6adb9d3e790e6e5ebe984eaee0c733b09 (diff) | |
download | ffmpeg-ee41963f19eb6303b1582601dfccb1753866ab63.tar.gz |
cosmetics: drop some completely pointless parentheses
Diffstat (limited to 'libavcodec/vc1dec.c')
-rw-r--r-- | libavcodec/vc1dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c index b5b8c29bda..7c9e906505 100644 --- a/libavcodec/vc1dec.c +++ b/libavcodec/vc1dec.c @@ -236,7 +236,7 @@ static void vc1_put_signed_blocks_clamped(VC1Context *v) if (s->mb_x) { topleft_mb_pos = (s->mb_y - 1) * s->mb_stride + s->mb_x - 1; fieldtx = v->fieldtx_plane[topleft_mb_pos]; - stride_y = (s->linesize) << fieldtx; + stride_y = s->linesize << fieldtx; v_dist = (16 - fieldtx) >> (fieldtx == 0); s->dsp.put_signed_pixels_clamped(v->block[v->topleft_blk_idx][0], s->dest[0] - 16 * s->linesize - 16, |