mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/vp3: Reuse local variable in unpack_superblocks()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
88e3807aaf
commit
f563180817
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue