Browse Source

avformat/astdec: increase the score for odd samplerate/channels to max/8

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.2-rc1
Michael Niedermayer 11 years ago
parent
commit
023953e964
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/astdec.c

+ 1
- 1
libavformat/astdec.c View File

@@ -33,7 +33,7 @@ static int ast_probe(AVProbeData *p)
if (!AV_RB16(p->buf + 10) ||
!AV_RB16(p->buf + 12) || AV_RB16(p->buf + 12) > 256 ||
!AV_RB32(p->buf + 16) || AV_RB32(p->buf + 16) > 8*48000)
return 1;
return AVPROBE_SCORE_MAX / 8;

return AVPROBE_SCORE_MAX / 3 * 2;
}


Loading…
Cancel
Save