Commit f4e692a0 authored by Adriano Pallavicino's avatar Adriano Pallavicino Committed by Josh de Kock

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

Signed-off-by: 's avatarAdriano Pallavicino <adriano.pallavicino@gmail.com>
Signed-off-by: 's avatarJosh de Kock <josh@itanimul.li>
parent c4b78f96
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment