1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avcodec/ffv1dec: remove unused var

This commit is contained in:
Michael Niedermayer
2025-03-20 23:30:40 +01:00
parent e19496fe71
commit 0538b4c569

View File

@ -277,7 +277,6 @@ static int decode_remap(FFV1Context *f, FFV1SliceContext *sc)
{
unsigned int end = f->avctx->bits_per_raw_sample == 32 ? 0xFFFFFFFF : 0xFFFF;
int flip = sc->remap == 2 ? (end>>1) : 0;
int sign = (end>>1)+1;
for (int p= 0; p < 1 + 2*f->chroma_planes + f->transparency; p++) {
int j = 0;