From f563180817774e5fdd17e32992dce4fa01dbf881 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 28 Oct 2018 12:49:40 +0100 Subject: avcodec/vp3: Reuse local variable in unpack_superblocks() Signed-off-by: Michael Niedermayer --- libavcodec/vp3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/vp3.c') diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c index 348416b25d..d8421a8315 100644 --- a/libavcodec/vp3.c +++ b/libavcodec/vp3.c @@ -568,7 +568,7 @@ static int unpack_superblocks(Vp3DecodeContext *s, GetBitContext *gb) if (current_fragment != -1) { int coded = s->superblock_coding[i]; - if (s->superblock_coding[i] == SB_PARTIALLY_CODED) { + if (coded == SB_PARTIALLY_CODED) { /* fragment may or may not be coded; this is the case * that cares about the fragment coding runs */ if (current_run-- == 0) { -- cgit v1.2.3