summaryrefslogtreecommitdiff
path: root/libavformat/bink.c
diff options
context:
space:
mode:
authorAdriano Pallavicino <adriano.pallavicino@gmail.com>2016-10-02 18:16:21 +0200
committerJosh de Kock <josh@itanimul.li>2016-10-03 15:42:27 +0100
commitf4e692a0e90b4301b4bc21d163cfc6420cbab7b6 (patch)
tree0c8448577a2cb8c0700aa97934949d03610d9e1c /libavformat/bink.c
parentc4b78f966223d108320f3e18bec5ae934ebca8a5 (diff)
lavf/bink.c: fix warning due to misleading indentation
Signed-off-by: Adriano Pallavicino <adriano.pallavicino@gmail.com> Signed-off-by: Josh de Kock <josh@itanimul.li>
Diffstat (limited to 'libavformat/bink.c')
-rw-r--r--libavformat/bink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/bink.c b/libavformat/bink.c
index c214eb3a69..e6f0cb78ed 100644
--- a/libavformat/bink.c
+++ b/libavformat/bink.c
@@ -74,7 +74,7 @@ static int probe(AVProbeData *p)
AV_RL32(b+24) > 0 && AV_RL32(b+24) <= BINK_MAX_HEIGHT &&
AV_RL32(b+28) > 0 && AV_RL32(b+32) > 0) // fps num,den
return AVPROBE_SCORE_MAX;
- b += SMUSH_BLOCK_SIZE;
+ b += SMUSH_BLOCK_SIZE;
} while (smush && b < p->buf + p->buf_size - 32);
return 0;
}