avcodec/diracdsp: Remove unused variable

Forgotten in ca3c6c981a.

Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
(cherry picked from commit 310d4062e7)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Andreas Rheinhardt 2020-09-23 20:20:12 +02:00 committed by Michael Niedermayer
parent 0f75b041dc
commit 5785193655
No known key found for this signature in database
GPG Key ID: B18E8928B3948D64

View File

@ -195,7 +195,7 @@ static void dequant_subband_ ## PX ## _c(uint8_t *src, uint8_t *dst, ptrdiff_t s
{ \ { \
int i, y; \ int i, y; \
for (y = 0; y < tot_v; 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++) { \ for (i = 0; i < tot_h; i++) { \
c = *src_r++; \ c = *src_r++; \
if (c < 0) c = -((-(unsigned)c*qf + qs) >> 2); \ if (c < 0) c = -((-(unsigned)c*qf + qs) >> 2); \