[FFmpeg-devel] [PATCH 2/3] avcodec/vp3: Reuse local variable in unpack_superblocks()
Michael Niedermayer
michael at niedermayer.cc
Sun Oct 28 16:04:58 EET 2018
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
---
libavcodec/vp3.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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) {
--
2.19.1
More information about the ffmpeg-devel
mailing list