mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/takdec: remove unused variable
Found-by: CSA Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
7dbc27dc1d
commit
4fed019821
|
@ -448,7 +448,6 @@ static int decode_subframe(TAKDecContext *s, int32_t *decoded,
|
|||
x = 1 << (32 - (15 - filter_quant));
|
||||
y = 1 << ((15 - filter_quant) - 1);
|
||||
for (i = 0, j = filter_order - 1; i < filter_order / 2; i++, j--) {
|
||||
int tmp = y + tfilter[j];
|
||||
s->filter[j] = x - ((tfilter[i] + y) >> (15 - filter_quant));
|
||||
s->filter[i] = x - ((tfilter[j] + y) >> (15 - filter_quant));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue