[FFmpeg-cvslog] lavf/bink.c: fix warning due to misleading indentation

Adriano Pallavicino git at videolan.org
Mon Oct 3 17:47:28 EEST 2016


ffmpeg | branch: master | Adriano Pallavicino <adriano.pallavicino at gmail.com> | Sun Oct  2 18:16:21 2016 +0200| [f4e692a0e90b4301b4bc21d163cfc6420cbab7b6] | committer: Josh de Kock

lavf/bink.c: fix warning due to misleading indentation

Signed-off-by: Adriano Pallavicino <adriano.pallavicino at gmail.com>
Signed-off-by: Josh de Kock <josh at itanimul.li>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f4e692a0e90b4301b4bc21d163cfc6420cbab7b6
---

 libavformat/bink.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/bink.c b/libavformat/bink.c
index c214eb3..e6f0cb7 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;
 }



More information about the ffmpeg-cvslog mailing list