diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-09-23 20:20:12 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-09-26 20:38:30 +0200 |
commit | 310d4062e7639217d717e447426343366775ac30 (patch) | |
tree | 809503f5c7247f9e29da166704c17ae3d6725571 | |
parent | 85737a4d76f8a39ec5554abe62bcbc41b6123d09 (diff) | |
download | ffmpeg-310d4062e7639217d717e447426343366775ac30.tar.gz |
avcodec/diracdsp: Remove unused variable
Forgotten in ca3c6c981aa5b0af8a5576020b79fdd3cdf9ae9e.
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/diracdsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/diracdsp.c b/libavcodec/diracdsp.c index 4e08d3817e..80dfafd78b 100644 --- a/libavcodec/diracdsp.c +++ b/libavcodec/diracdsp.c @@ -195,7 +195,7 @@ static void dequant_subband_ ## PX ## _c(uint8_t *src, uint8_t *dst, ptrdiff_t s { \ int i, y; \ for (y = 0; y < tot_v; y++) { \ - PX c, sign, *src_r = (PX *)src, *dst_r = (PX *)dst; \ + PX c, *src_r = (PX *)src, *dst_r = (PX *)dst; \ for (i = 0; i < tot_h; i++) { \ c = *src_r++; \ if (c < 0) c = -((-(unsigned)c*qf + qs) >> 2); \ |