diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-04-17 14:43:28 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-04-17 14:43:28 +0000 |
commit | dd08de11f6d6b0808be2449e8045ae0ee3a1bfd8 (patch) | |
tree | a9a47ad47b2614c28bd19015962d2b17934f1905 /libavcodec/jrevdct.c | |
parent | 01d83278e959cdc76abfc2d6650d32bd6402aa8c (diff) | |
download | ffmpeg-dd08de11f6d6b0808be2449e8045ae0ee3a1bfd8.tar.gz |
Remove unused assignment from j_rev_dct() found by CSA.
Originally committed as revision 18558 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/jrevdct.c')
-rw-r--r-- | libavcodec/jrevdct.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/jrevdct.c b/libavcodec/jrevdct.c index b3342c2738..3096b0b2eb 100644 --- a/libavcodec/jrevdct.c +++ b/libavcodec/jrevdct.c @@ -716,7 +716,6 @@ void j_rev_dct(DCTBLOCK data) if (d1) { /* d1 != 0, d3 == 0, d5 != 0, d7 != 0 */ z1 = d7 + d1; - z2 = d5; z3 = d7; z4 = d5 + d1; z5 = MULTIPLY(z3 + z4, FIX_1_175875602); |