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>
pull/237/merge
Adriano Pallavicino 8 years ago committed by Josh de Kock
parent c4b78f9662
commit f4e692a0e9
  1. 2
      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;
}

Loading…
Cancel
Save