X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Fbink.c;h=e6f0cb78ed45a65394cd11aa4f08a8247a70d879;hb=bbd0ebfd835761d1abbe030a8a7866d88b2a8777;hp=c214eb3a697bfcc2e8eaf53850ba775bee486c5c;hpb=85da4f92580d01cc67061ba90aca28d878868a80;p=ffmpeg diff --git a/libavformat/bink.c b/libavformat/bink.c index c214eb3a697..e6f0cb78ed4 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; }