Browse Source

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>
tags/n3.2
Adriano Pallavicino Josh de Kock 9 years ago
parent
commit
f4e692a0e9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/bink.c

+ 1
- 1
libavformat/bink.c View File

@@ -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