mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-02 03:06:28 +02:00
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) {
|
if (current_fragment != -1) {
|
||||||
int coded = s->superblock_coding[i];
|
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
|
/* fragment may or may not be coded; this is the case
|
||||||
* that cares about the fragment coding runs */
|
* that cares about the fragment coding runs */
|
||||||
if (current_run-- == 0) {
|
if (current_run-- == 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user